You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
853 B
25 lines
853 B
2 years ago
|
<?php
|
||
|
|
||
|
function rooms_preprocess_html(&$variables) {
|
||
|
// Add information about the number of sidebars.
|
||
|
if (!empty($variables['page']['sidebar_left']) && !empty($variables['page']['sidebar_right'])) {
|
||
|
$variables['attributes']['class'][] = 'layout-two-sidebars';
|
||
|
}
|
||
|
elseif (!empty($variables['page']['sidebar_left'])) {
|
||
|
$variables['attributes']['class'][] = 'layout-one-sidebar';
|
||
|
$variables['attributes']['class'][] = 'layout-sidebar-left';
|
||
|
}
|
||
|
elseif (!empty($variables['page']['sidebar_right'])) {
|
||
|
$variables['attributes']['class'][] = 'layout-one-sidebar';
|
||
|
$variables['attributes']['class'][] = 'layout-sidebar-right';
|
||
|
}
|
||
|
else {
|
||
|
$variables['attributes']['class'][] = 'layout-no-sidebars';
|
||
|
}
|
||
|
|
||
|
if (!empty($variables['page']['featured_top'])) {
|
||
|
// $variables['attributes']['class'][] = 'has-featured-top';
|
||
|
}
|
||
|
|
||
|
}
|