Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F802546
in-link
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 24, 2:41 PM
Size
1 KB
Mime Type
text/x-diff
Expires
Wed, Feb 26, 2:41 PM (1 d, 10 h)
Engine
blob
Format
Raw Data
Handle
575451
Attached To
rMINL Modules.In-Link
in-link
View Options
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
Log In to Comment