Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1161894
affiliate_plans_items_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
Sat, Sep 20, 2:41 PM
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Sep 22, 2:41 PM (2 h, 18 m)
Engine
blob
Format
Raw Data
Handle
751671
Attached To
rMINC Modules.In-Commerce
affiliate_plans_items_tag_processor.php
View Options
<?php
/**
* @version $Id: affiliate_plans_items_tag_processor.php 16516 2017-01-20 14:12:22Z alex $
* @package In-Commerce
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license Commercial License
* This software is protected by copyright law and international treaties.
* Unauthorized reproduction or unlicensed usage of the code of this program,
* or any portion of it may result in severe civil and criminal penalties,
* and will be prosecuted to the maximum extent possible under the law
* See http://www.in-portal.org/commercial-license for copyright notices and details.
*/
defined
(
'FULL_PATH'
)
or
die
(
'restricted access!'
);
class
AffiliatePlansItemsTagProcessor
extends
kDBTagProcessor
{
function
IsEntireOrder
(
$params
)
{
$table_name
=
$this
->
Application
->
getUnitOption
(
$this
->
Prefix
,
'TableName'
);
if
(
$this
->
Application
->
IsTempMode
(
$this
->
Prefix
))
{
$table_name
=
$this
->
Application
->
GetTempName
(
$table_name
,
'prefix:'
.
$this
->
Prefix
);
}
$sql
=
'SELECT COUNT(*)
FROM '
.
$table_name
.
'
WHERE (ItemType = 0) AND (AffiliatePlanId = '
.
$this
->
Application
->
GetVar
(
'ap_id'
)
.
')'
;
return
$this
->
Conn
->
GetOne
(
$sql
);
}
function
ItemIcon
(
$params
)
{
/** @var kDBList $object */
$object
=
$this
->
getObject
(
$params
);
if
(
$object
->
GetDBField
(
'ItemType'
)
==
2
)
{
$cat_object
=
$this
->
Application
->
recallObject
(
'c'
);
$cat_object
->
Load
(
$object
->
GetDBField
(
'CategoryId'
)
);
$cat_tag_processor
=
$this
->
Application
->
recallObject
(
'c_TagProcessor'
);
return
$cat_tag_processor
->
ItemIcon
();
}
return
parent
::
ItemIcon
(
$params
);
}
}
Event Timeline
Log In to Comment