ZOO Plugin + Xmap 2.2.1
3 posts
• Page 1 of 1
ZOO Plugin + Xmap 2.2.1
Hi guilleva,
I have Zoo Plugin but all links in xml sitemap incorrect when I enable SEF,
i need /category/item/files
but in sitemap XML /component/zoo/item/files
maybe you look and tell me what I need change, please
Pls help
I have Zoo Plugin but all links in xml sitemap incorrect when I enable SEF,
i need /category/item/files
but in sitemap XML /component/zoo/item/files
maybe you look and tell me what I need change, please
- Code: Select all
defined( '_JEXEC' ) or die( 'Restricted access.' );
class xmap_com_zoo {
function prepareMenuItem(&$node) {
$link_query = parse_url( $node->link );
parse_str( html_entity_decode($link_query['query']), $link_vars);
$component = JArrayHelper::getValue($link_vars, 'option', '');
$view = JArrayHelper::getValue($link_vars,'view','');
if ($component == 'com_zoo' && $view == 'frontpage' ) {
$id = intval(JArrayHelper::getValue($link_vars,'id',0));
if ( $id != 0 ) {
$node->uid = 'zoo'.$id;
$node->expandible = false;
}
}
}
function getTree( &$xmap, &$parent, &$params) {
$link_query = parse_url( $parent->link );
parse_str( html_entity_decode($link_query['query']), $link_vars );
$view = JArrayHelper::getValue($link_vars,'view',0);
$include_categories = JArrayHelper::getValue( $params, 'include_categories',1,'' );
$include_categories = ( $include_categories == 1
|| ( $include_categories == 2 && $xmap->view == 'xml')
|| ( $include_categories == 3 && $xmap->view == 'html')
|| $xmap->view == 'navigator');
$params['include_categories'] = $include_categories;
$include_items = JArrayHelper::getValue( $params, 'include_items',1,'' );
$include_items = ( $include_items == 1
|| ( $include_items == 2 && $xmap->view == 'xml')
|| ( $include_items == 3 && $xmap->view == 'html')
|| $xmap->view == 'navigator');
$params['include_items'] = $include_items;
$priority = JArrayHelper::getValue($params,'cat_priority',$parent->priority,'');
$changefreq = JArrayHelper::getValue($params,'cat_changefreq',$parent->changefreq,'');
if ($priority == '-1')
$priority = $parent->priority;
if ($changefreq == '-1')
$changefreq = $parent->changefreq;
$params['cat_priority'] = $priority;
$params['cat_changefreq'] = $changefreq;
$priority = JArrayHelper::getValue($params,'item_priority',$parent->priority,'');
$changefreq = JArrayHelper::getValue($params,'item_changefreq',$parent->changefreq,'');
if ($priority == '-1')
$priority = $parent->priority;
if ($changefreq == '-1')
$changefreq = $parent->changefreq;
$params['item_priority'] = $priority;
$params['item_changefreq'] = $changefreq;
xmap_com_zoo::getCategoryTree($xmap, $parent, $params);
}
function getCategoryTree ( &$xmap, &$parent, &$params) {
$db = &JFactory::getDBO();
// first we fetch what application we are talking about
$menu =& JSite::getMenu();
$menuparams = $menu->getParams($parent->id);
$appid = intval($menuparams->get('application', 0));
// if selected, we print title category
if ($params['include_categories']) {
// we print title if there is any
if ($params['categories_title'] != "" && $xmap->view == 'html') {
echo "<".$params['categories_title_tag'].">".$params['categories_title']."</".$params['categories_title_tag'].">";
}
// get categories info from database
$queryc = 'SELECT c.id, c.name '.
'FROM #__zoo_category c '.
' WHERE c.application_id = '.$appid.' AND c.published=1 '.
' ORDER by c.ordering';
$db->setQuery($queryc);
$cats = $db->loadObjectList();
// now we print categories
$xmap->changeLevel(1);
foreach($cats as $cat) {
$node = new stdclass;
$node->id = $parent->id;
$node->uid = $parent->uid .'c'.$cat->id;
$node->name = $cat->name;
$node->link = 'index.php?option=com_zoo&task=category&category_id='.$cat->id;
$node->priority = $params['cat_priority'];
$node->changefreq = $params['cat_changefreq'];
$node->expandible = true;
$xmap->printNode($node);
}
$xmap->changeLevel(-1);
}
if ($params['include_items'] ){
if ($params['items_title'] != "" && $xmap->view == 'html') {
echo "<".$params['items_title_tag'].">".$params['items_title']."</".$params['items_title_tag'].">";
}
// get items info from database
// basically it select those items that are published now (publish_up is less then now, meaning it's in past)
// and not unpublished yet (either not have publish_down date set, or that date is in future)
$queryi = 'SELECT i.id, i.name, i.publish_up'.
' FROM #__zoo_item i'.
' WHERE i.application_id= '.$appid.
' AND DATEDIFF( i.publish_up, NOW( ) ) <=0'.
' AND IF( i.publish_down >0, DATEDIFF( i.publish_down, NOW( ) ) >0, true )'.
' ORDER BY i.publish_up';
$db->setQuery($queryi);
$items = $db->loadObjectList();
// now we print items
$xmap->changeLevel(1);
foreach($items as $item) {
// if we are making news map, we should ignore items older then 3 days
if ($xmap->isNews && strtotime($item->publish_up) < ($xmap->now - (3 * 86400))) {
continue;
}
$node = new stdclass;
$node->id = $parent->id;
$node->uid = $parent->uid .'i'.$item->id;
$node->name = $item->name;
$node->link = 'index.php?option=com_zoo&task=item&item_id='.$item->id;
$node->priority = $params['item_priority'];
$node->changefreq = $params['item_changefreq'];
$node->expandible = true;
$node->modified = strtotime($item->publish_up);
$node->newsItem = 1; // if we are making news map and it get this far, it's news
$xmap->printNode($node);
}
$xmap->changeLevel(-1);
}
}
}
Pls help
- Dre77
- Fresh Boarder

- Posts: 2
- Joined: Thu Nov 03, 2011 8:09 am
Re: ZOO Plugin + Xmap 2.2.1
I would really like a working version of this plugin too..
- mcfrojd
- Fresh Boarder

- Posts: 1
- Joined: Fri Apr 06, 2012 12:20 pm
Re: ZOO Plugin + Xmap 2.2.1
I have posted a fix for the plugin listed on the JED.
See http://www.wdevp.com/forum/joomla/extensions/xmap-extensions/xmap-zoo-plugin-url/page-2
See http://www.wdevp.com/forum/joomla/extensions/xmap-extensions/xmap-zoo-plugin-url/page-2
- mattfaulds
- Fresh Boarder

- Posts: 2
- Joined: Wed Jan 06, 2010 2:35 pm
3 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 1 guest