Last active
February 9, 2016 03:34
-
-
Save nyphalim/657563d03ee4c086bd53 to your computer and use it in GitHub Desktop.
Назначаем класс тегу body в зависимости от раздела сайта
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| 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