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';
}
Project:
Type:
Reacties
list()
Like the Zen-theme, I might do something with the PHP-function list():
list($section, ) = explode('/', $path, 2);
Reactie toevoegen