Drupalguy Blog

September 2019

Drupal Roles

I found an article that has answered a lot of terms that have been floating around me since I have adopted Drupal as my new career.  It has clarified a great many things that I only had passing understanding and I wish to share it here.

The roles it clarifies are:

Blog Homepage View (Export)

$view = new view();
$view->name = 'homepage';
$view->description = 'Emulates the default Drupal front page; you may set the default home page path to this view to make it your front page.';
$view->tag = 'default';
$view->base_table = 'node';
$view->human_name = 'homepage';
$view->core = 0;
$view->api_version = '3.0';