PHP
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
if (!function_exists(get_root_cat))
{
function get_root_cat( $code )
{
global $structure ;
return mb_substr( $structure [ 'page' ][ $code ][ 'path' ], 0, mb_strpos( $structure [ 'page' ][ $code ][ 'path' ], '.' ));
}
}
if (!function_exists(get_root_title))
{
function get_root_title( $code )
{
global $structure ;
$cat = mb_substr( $structure [ 'page' ][ $code ][ 'path' ], 0, mb_strpos( $structure [ 'page' ][ $code ][ 'path' ], '.' ));
return $structure [ 'page' ][ $cat ][ 'title' ];
}
}
|
Разместить можно в themename.php -- функции определяют соответственно код и название первого родителя.
SED.by - создание сайтов, разработка плагинов и тем для Котонти