Page MenuHomeIn-Portal Phabricator

in-link
No OneTemporary

File Metadata

Created
Mon, Feb 24, 2:41 PM
Index: branches/5.2.x/units/listing_types/listing_types_tag_processor.php
===================================================================
--- branches/5.2.x/units/listing_types/listing_types_tag_processor.php (revision 15272)
+++ branches/5.2.x/units/listing_types/listing_types_tag_processor.php (revision 15273)
@@ -1,46 +1,49 @@
<?php
/**
* @version $Id$
* @package In-Link
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license GNU/GPL
* In-Portal is Open Source software.
* This means that this software may have been modified pursuant
* the GNU General Public License, and as distributed it includes
* or is derivative of works licensed under the GNU General Public License
* or other free or open source software licenses.
* See http://www.in-portal.org/license for copyright notices and details.
*/
defined('FULL_PATH') or die('restricted access!');
class ListingTypesTagProcessor extends kDBTagProcessor {
function CategoryPath($params)
{
$object = $this->getObject($params);
$params['cat_id'] = $object->GetDBField($params['field']);
- return $this->Application->ProcessParsedTag('c', 'CategoryPath', $params);
+ $navigation_bar = $this->Application->recallObject('kNavigationBar');
+ /* @var $navigation_bar kNavigationBar */
+
+ return $navigation_bar->build($params);
}
/**
* Makes 1st listing type default
*
* @param Array $params
* @return bool
*/
function IsDefault($params)
{
static $listing_type_id = null;
$object = $this->getObject($params);
/* @var $object kDBItem */
if (!isset($listing_type_id)) {
$listing_type_id = $object->GetID();
}
return $listing_type_id == $object->GetID();
}
}
\ No newline at end of file

Event Timeline