Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1033057
listing_types_tag_processor.php
No One
Temporary
Actions
Download 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
Thu, Jun 19, 4:47 PM
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jun 21, 4:47 PM (33 m, 45 s)
Engine
blob
Format
Raw Data
Handle
667534
Attached To
rMINL Modules.In-Link
listing_types_tag_processor.php
View Options
<?php
/**
* @version $Id: listing_types_tag_processor.php 12738 2009-10-20 19:36:22Z alex $
* @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
);
}
/**
* Makes 1st listing type default
*
* @param Array $params
* @return bool
*/
function
IsDefault
(
$params
)
{
static
$listing_type_id
=
null
;
$object
=&
$this
->
getObject
();
/* @var $object kDBItem */
if
(!
isset
(
$listing_type_id
))
{
$listing_type_id
=
$object
->
GetID
();
}
return
$listing_type_id
==
$object
->
GetID
();
}
}
Event Timeline
Log In to Comment