function smarty_function_mtsubcategorypath($args, &$ctx) { require_once "block.mtparentcategories.php"; require_once "function.mtcategorybasename.php"; $args = array('glue' => '/'); $content = null; $repeat = true; smarty_block_mtparentcategories($args, $content, $ctx, $repeat); $res = ''; while ($repeat) { $content = smarty_function_mtcategorybasename(array(), $ctx); $res .= smarty_block_mtparentcategories($args, $content, $ctx, $repeat); } return $res; }
function smarty_block_mtparentfolders($args, $content, &$ctx, &$repeat) { $args['class'] = 'folder'; return smarty_block_mtparentcategories($args, $content, $ctx, $repeat); }