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; } ?>