0byt3m1n1
Path:
/
data
/
0
/
0
/
6
/
46
/
6861
/
user
/
7034
/
cgi-bin
/
php
/
lib
/
[
Home
]
File: block.MTTopLevelParent.php
<?php function smarty_block_MTTopLevelParent($args, $content, &$ctx, &$repeat) { if (!isset($content)) { $ctx->localize(array('category','conditional','else_content')); require_once("MTUtil.php"); $cat = get_category_context($ctx); require_once("block.MTParentCategories.php"); $list = array(); get_parent_categories($cat, $ctx, $list); $ctx->stash('else_content', null); if (count($list) > 0) { $cat = array_pop($list); $ctx->stash('category', $cat); } else { $cat = null; } $ctx->stash('conditional', $cat ? 1 : 0); } else { if (!$ctx->stash('conditional')) { $content = $ctx->stash('else_content'); } $ctx->restore(array('category','conditional','else_content')); } return $content; } ?>