Skip to content

Instantly share code, notes, and snippets.

@nyphalim
Last active February 9, 2016 03:34
Show Gist options
  • Select an option

  • Save nyphalim/657563d03ee4c086bd53 to your computer and use it in GitHub Desktop.

Select an option

Save nyphalim/657563d03ee4c086bd53 to your computer and use it in GitHub Desktop.
Назначаем класс тегу body в зависимости от раздела сайта
<?
function bclass() {
global $APPLICATION;
$DirExp = explode('/', $APPLICATION->GetCurDir());
if($DirExp[1] !== ''): return ' class="'.$DirExp[1].'"'; endif;
}
?>
<body<?echo bclass();?>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment