function newbb_tag_block_top_show($options)
{
    if (!@(include_once XOOPS_ROOT_PATH . "/modules/tag/blocks/block.php")) {
        return null;
    }
    $block_content = tag_block_top_show($options, "newbb");
    return $block_content;
}
function news_tag_block_top_show($options)
{
    require_once XOOPS_ROOT_PATH . '/modules/tag/blocks/block.php';
    if (!isset($module_dirname)) {
        $module_dirname = 'news';
    }
    return tag_block_top_show($options, $module_dirname);
}
Example #3
0
function oledrion_tag_block_top_show($options)
{
    require_once XOOPS_ROOT_PATH . '/modules/tag/blocks/block.php';
    return tag_block_top_show($options, 'oledrion');
}
Example #4
0
function b_forum_tag_block_top_show($options) 
{
    include_once XOOPS_ROOT_PATH . "/modules/tag/blocks/block.php";
    return tag_block_top_show($options, 'xforum');
}