Secties (body class)

Code: 
function akj_preprocess_page(&$variables) { $alias = drupal_get_path_alias($_GET['q']); $path_sections = explode('/', $alias); $section = $path_sections[0]; $variables['body_classes'] .= ' '.$section.'Section'; }

Reacties

Like the Zen-theme, I might do something with the PHP-function list():

list($section, ) = explode('/', $path, 2);

Reactie toevoegen