站点地图(sitemap)是面向搜索引擎的一个重要工具,通常会是一个XML文件,这个文件里罗列出您网站中的哪些网址希望被搜索引擎抓取。在Joomla!中可以使用Joomap组件来完成这项工作。
默认的情况下,Joomap只适合于Joomla!中已经创建的菜单、Content组件、VirtueMart组件。这样,当我们安装了其它组件的话,它并不能自动的根据组件的内容进行更新。还好,Joomap提供了开发接口以供我们使用。这里,贴出它的一个示例,列出最新文章的一个Plugin:参照这个示例,我们可以这样来做:
怎么样,Joomap扩展起来是不是也很容易啊?
默认的情况下,Joomap只适合于Joomla!中已经创建的菜单、Content组件、VirtueMart组件。这样,当我们安装了其它组件的话,它并不能自动的根据组件的内容进行更新。还好,Joomap提供了开发接口以供我们使用。这里,贴出它的一个示例,列出最新文章的一个Plugin:
- <?php
- /**
- * @author Daniel Grothe
- * @package Plugins
- */
- // Register with the Plugin Manager
- $tmp = new Joomap_content;
- JoomapPlugins::addPlugin( $tmp );
- /** Handles standard Joomla Content */
- class Joomap_content {
- function isOfType(&$joomap, &$parent) {
- switch( $parent->type ) {
- case 'content_blog_category':
- case 'content_category':
- case 'content_section':
- case 'content_blog_section':
- case 'content_typed':
- return true;
- }
- return false;
- }
- /** return a node-tree */
- function &getTree(&$joomap, &$parent) {
- $result = null;
- switch( $parent->type ) {
- case 'content_blog_category':
- case 'content_category':
- if( $joomap->config->expand_category ) {
- $params = $this->_paramsToArray( $parent->params );
- $result = $this->getContentCategory($joomap, $parent, $parent->componentid, $params);
- }
- break;
- case 'content_section':
- if( $joomap->config->expand_section ) {
- $params = $this->_paramsToArray( $parent->params );
- $result = $this->getContentSection($joomap, $parent, $parent->componentid, $params);
- }
- break;
- case 'content_blog_section':
- if( $joomap->config->expand_section ) {
- $params = $this->_paramsToArray( $parent->params );
- $result = $this->getContentBlogSection($joomap, $parent, $parent->componentid, $params);
- }
- break;
- case 'content_typed':
- global $database;
- $database->setQuery("SELECT modified, created FROM content WHERE id=". $parent->componentid);
- $database->loadObject( $item );
- if( $item->modified == '0000-00-00 00:00:00' )
- $item->modified = $item->created;
- $parent->modified = $this->_toTimestamp( $item->modified );
- break;
- }
- return $result;
- }
- /** Get all content items within a content category.
- * Returns an array of all contained content items. */
- function &getContentCategory(&$joomap, &$parent, $catid, &$params) {
- global $database;
- $orderby = $this->_orderby_sec( $orderby );
- $query =
- "SELECT a.id, a.title, a.modified, a.created"
- . "\n FROM content AS a"
- . "\n WHERE a.catid='".$catid."'"
- . "\n AND a.state='1'"
- . "\n AND ( a.publish_up = '0000-00-00 00:00:00' OR a.publish_up <= '". $joomap->now ."' )"
- . "\n AND ( a.publish_down = '0000-00-00 00:00:00' OR a.publish_down >= '". $joomap->now ."' )"
- . ( $joomap->noauth ? '' : "\n AND a.access<='". $joomap->gid ."'" ) // authentication required ?
- . "\n ORDER BY ". $orderby .""
- ;
- $database->setQuery( $query );
- $items = $database->loadObjectList();
- foreach($items as $item) {
- $node = new stdclass();
- $node->id = $parent->id;
- $node->browserNav = $parent->browserNav;
- $node->name = $item->title;
- if( $item->modified == '0000-00-00 00:00:00' )
- $item->modified = $item->created;
- $node->modified = $this->_toTimestamp( $item->modified );
- $node->link = 'index.php?option=com_content&task=view&id='.$item->id;
- $content[] = $node; // add this content item as a node to the list
- }
- return $content;
- }
- /** Get all Categories within a Section.
- * Also call getCategory() for each Category to include it's items */
- function &getContentSection(&$joomap, &$parent, $secid, &$params ) {
- global $database;
- $orderby = $this->_orderby_sec( $orderby );
- $query =
- "SELECT a.id, a.title, a.name, a.params"
- . "\n FROM categories AS a"
- . "\n LEFT JOIN content AS b ON b.catid = a.id "
- . "\n AND b.state = '1'"
- . "\n AND ( b.publish_up = '0000-00-00 00:00:00' OR b.publish_up <= '". $joomap->now ."' )"
- . "\n AND ( b.publish_down = '0000-00-00 00:00:00' OR b.publish_down >= '". $joomap->now ."' )"
- . ( $joomap->noauth ? '' : "\n AND b.access <= ". $joomap->gid ) // authentication required ?
- . "\n WHERE a.section = '". $secid ."'"
- . "\n AND a.published = '1'"
- . ( $joomap->noauth ? '' : "\n AND a.access <= ". $joomap->gid ) // authentication required ?
- . "\n GROUP BY a.id"
- . ( @$params['empty_cat'] ? '' : "\n HAVING COUNT( b.id ) > 0" ) // hide empty categories ?
- . "\n ORDER BY ". $orderby
- ;
- $database->setQuery( $query );
- $items = $database->loadObjectList();
- foreach($items as $item) {
- $node = new stdclass();
- $node->id = $parent->id;
- $node->name = $item->name;
- $node->browserNav = $parent->browserNav;
- $node->link = 'index.php?option=com_content&task=category§ionid='.$secid.'&id='.$item->id;
- if( $joomap->config->expand_category )
- $node->tree = $this->getContentCategory($joomap, $parent, $item->id, $params);
- $content[] = $node;
- }
- return $content;
- }
- /** Return an array with all Items in a Section */
- function &getContentBlogSection(&$joomap, &$parent, $secid, &$params ) {
- global $database;
- $order_pri = $this->_orderby_pri( $order_pri );
- $order_sec = $this->_orderby_sec( $order_sec );
- $where = $this->_where( 1, $joomap->access, $joomap->noauth, $joomap->gid, $secid, $joomap->now );
- $query =
- "SELECT a.id, a.title, a.modified, a.created"
- . "\n FROM content AS a"
- . "\n INNER JOIN categories AS cc ON cc.id = a.catid"
- . "\n LEFT JOIN users AS u ON u.id = a.created_by"
- . "\n LEFT JOIN content_rating AS v ON a.id = v.content_id"
- . "\n LEFT JOIN sections AS s ON a.sectionid = s.id"
- . "\n LEFT JOIN groups AS g ON a.access = g.id"
- . "\n AND s.access <= ".$joomap->gid
- . "\n AND cc.access <= ".$joomap->gid
- . "\n AND s.published = 1"
- . "\n AND cc.published = 1"
- . "\n ORDER BY $order_pri $order_sec";
- $database->setQuery( $query );
- $items = $database->loadObjectList();
- foreach($items as $item) {
- $node = new stdclass();
- $node->id = $parent->id;
- $node->browserNav = $parent->browserNav;
- $node->name = $item->title;
- if( $item->modified == '0000-00-00 00:00:00' )
- $item->modified = $item->created;
- $node->modified = $this->_toTimestamp( $item->modified );
- $node->link = 'index.php?option=com_content&task=view&id='.$item->id;
- $content[] = $node;
- }
- return $content;
- }
- /***************************************************/
- /* copied from /components/com_content/content.php */
- /***************************************************/
- /** convert a menuitem's params field to an array */
- function _paramsToArray( &$params ) {
- foreach($tmp AS $a) {
- $res[$key] = $val;
- }
- return $res;
- }
- /** Translate Joomla datestring to timestamp */
- function _toTimestamp( &$date ) {
- if ( $date && ereg( "([0-9]{4})-([0-9]{2})-([0-9]{2})[ ]([0-9]{2}):([0-9]{2}):([0-9]{2})", $date, $regs ) ) {
- }
- return FALSE;
- }
- /** translate primary order parameter to sort field */
- function _orderby_pri( $orderby ) {
- switch ( $orderby ) {
- case 'alpha':
- $orderby = 'cc.title, ';
- break;
- case 'ralpha':
- $orderby = 'cc.title DESC, ';
- break;
- case 'order':
- $orderby = 'cc.ordering, ';
- break;
- default:
- $orderby = '';
- break;
- }
- return $orderby;
- }
- /** translate secondary order parameter to sort field */
- function _orderby_sec( $orderby ) {
- switch ( $orderby ) {
- case 'date':
- $orderby = 'a.created';
- break;
- case 'rdate':
- $orderby = 'a.created DESC';
- break;
- case 'alpha':
- $orderby = 'a.title';
- break;
- case 'ralpha':
- $orderby = 'a.title DESC';
- break;
- case 'hits':
- $orderby = 'a.hits';
- break;
- case 'rhits':
- $orderby = 'a.hits DESC';
- break;
- case 'order':
- $orderby = 'a.ordering';
- break;
- case 'author':
- $orderby = 'a.created_by_alias, u.name';
- break;
- case 'rauthor':
- $orderby = 'a.created_by_alias DESC, u.name DESC';
- break;
- case 'front':
- $orderby = 'f.ordering';
- break;
- default:
- $orderby = 'a.ordering';
- break;
- }
- return $orderby;
- }
- /** @param int 0 = Archives, 1 = Section, 2 = Category */
- function _where( $type=1, &$access, &$noauth, $gid, $id, $now=NULL, $year=NULL, $month=NULL ) {
- global $database;
- $nullDate = $database->getNullDate();
- // normal
- if ( $type > 0) {
- $where[] = "a.state = '1'";
- if ( !$access->canEdit ) {
- $where[] = "( a.publish_up = '$nullDate' OR a.publish_up <= '$now' )";
- $where[] = "( a.publish_down = '$nullDate' OR a.publish_down >= '$now' )";
- }
- if ( $noauth ) {
- $where[] = "a.access <= $gid";
- }
- if ( $id > 0 ) {
- if ( $type == 1 ) {
- $where[] = "a.sectionid IN ( $id ) ";
- } else if ( $type == 2 ) {
- $where[] = "a.catid IN ( $id ) ";
- }
- }
- }
- // archive
- if ( $type < 0 ) {
- $where[] = "a.state='-1'";
- if ( $year ) {
- $where[] = "YEAR( a.created ) = '$year'";
- }
- if ( $month ) {
- $where[] = "MONTH( a.created ) = '$month'";
- }
- if ( $noauth ) {
- $where[] = "a.access <= $gid";
- }
- if ( $id > 0 ) {
- if ( $type == -1 ) {
- $where[] = "a.sectionid = $id";
- } else if ( $type == -2) {
- $where[] = "a.catid = $id";
- }
- }
- }
- return $where;
- }
- }
- ?>
- <?php
- /**
- * @author Daniel Grothe
- * @module Joomap
- */
- $tmp = new 插件名称; //请将插件名称改为您所需要的名字
- JoomapPlugins::addPlugin( $tmp );
- /** Adds support for Phpshop and Virtuemart categories to Joomap */
- class 插件名称 {
- /** Return true if this plugin handles this content */
- function isOfType( &$joomap, &$parent ) {
- if( $parent->type == 'components') {
- switch( $parent->component ) {
- case '组件名称': //这里的组件名称指的是您所安装在Joomla!中的组件的名称,这所以这样写,是想告诉Joomap,以下所列出的内容是当作该菜单的子项来进行地。呵呵,当然,这里就要求:该组件应该在Joomap所使用的菜单类型里发布了至少一个菜单,而且,类型为“components”。
- return true;
- }
- }
- return false;
- }
- /** Get the content tree for this kind of content */
- function &getTree( &$joomap, &$parent ) {
- $tree = $this->getList($joomap, $parent);
- return $tree;
- }
- /** Virtuemart support */
- function &getList( &$joomap, &$parent ) {
- global $database;
- //定义一个数组,写一些自定义的链接。
- foreach($ax as $k=>$v){
- $node->link=$v['link'];
- $node->name=$v['name'];
- $node->id=$parent->id;
- $list[] = $node;
- }
- return $list;
- }
- }?>
怎么样,Joomap扩展起来是不是也很容易啊?











评论