1 template.php | basis_preprocess_page(&$variables) |
Prepares variables for page templates.
See also
File
- core/
themes/ basis/ template.php, line 24 - Basis preprocess functions and theme function overrides.
Code
function basis_preprocess_page(&$variables) {
$node = menu_get_object();
// Add the OpenSans font from core on every page of the site.
backdrop_add_library('system', 'opensans', TRUE);
// To add a class 'page-node-[nid]' to each page.
if ($node) {
$variables['classes'][] = 'page-node-' . $node->nid;
}
// To add a class 'view-name-[name]' to each page.
$view = views_get_page_view();
if ($view) {
$variables['classes'][] = 'view-name-' . $view->name;
}
// Add breakpoint-specific CSS for dropdown menus.
$config = config('menu.settings');
if ($config->get('menu_breakpoint') == 'custom') {
backdrop_add_css(backdrop_get_path('theme', 'basis') . '/css/component/menu-dropdown.breakpoint.css', array(
'group' => CSS_THEME,
'every_page' => TRUE,
));
backdrop_add_css(backdrop_get_path('theme', 'basis') . '/css/component/menu-dropdown.breakpoint-queries.css', array(
'group' => CSS_THEME,
'every_page' => TRUE,
'media' => 'all and (min-width: ' . $config->get('menu_breakpoint_custom') . ')',
));
}
}