xoops 站点地图模块sitemap

来源:互联网 发布:数据分析的ppt模板 编辑:程序博客网 时间:2024/04/28 21:26

自身模块include文件夹添加sitemap.plugin.php

还会获取xoops_verssion.php submenu信息

 

<?php

if (!defined("XOOPS_ROOT_PATH")) { exit(); }

function b_sitemap_catalog()
{   
    $sitemap = array();
    $category_handler =& xoops_getmodulehandler("category", 'catalog');
    $categories =& $category_handler->getTrees(0, "&nbsp;&nbsp;&nbsp;&nbsp;");
    //xoops_result($categories);
    foreach ($categories as $id => $cat) {
        $sitemap["parent"][] = array("id" => $id, "title" => $cat['prefix'].$cat["cat_name"], "url"=> "category.php?cat_id="  . $id);
    }
    unset($categories);
    return $sitemap;
}

?>

原创粉丝点击