Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1374509
email_event_tp.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
Sun, Feb 1, 2:13 AM
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Feb 3, 2:13 AM (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
883191
Attached To
rINP In-Portal
email_event_tp.php
View Options
<?php
/**
* @version $Id: email_event_tp.php 14241 2011-03-16 20:24:35Z alex $
* @package In-Portal
* @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
EmailEventTagProcessor
extends
kDBTagProcessor
{
/**
* Removes "Enabled" column, when not in debug mode
*
* @param Array $params
*/
function
ModifyUnitConfig
(
$params
)
{
if
(!
$this
->
Application
->
isDebugMode
())
{
$grids
=
$this
->
Application
->
getUnitOption
(
$this
->
Prefix
,
'Grids'
);
foreach
(
$grids
as
$grid_name
=>
$grid_data
)
{
if
(
array_key_exists
(
'Enabled'
,
$grid_data
[
'Fields'
]))
{
unset
(
$grids
[
$grid_name
][
'Fields'
][
'Enabled'
]);
}
}
$this
->
Application
->
setUnitOption
(
$this
->
Prefix
,
'Grids'
,
$grids
);
}
}
/**
* Checks, that field can be edited
*
* @param Array $params
* @return string
*/
function
IsEditable
(
$params
)
{
if
(
$this
->
Application
->
isDebugMode
())
{
return
true
;
}
$object
=&
$this
->
getObject
(
$params
);
/* @var $object kDBItem */
return
$object
->
GetDBField
(
$params
[
'check_field'
]);
}
/**
* Removes "To" options from possible options in "RecipientType" field
*
* @param Array $params
*/
function
RemoveToRecipientType
(
$params
)
{
$object
=&
$this
->
getObject
(
$params
);
/* @var $object kDBItem */
$field_options
=
$object
->
GetFieldOptions
(
'RecipientType'
);
unset
(
$field_options
[
'options'
][
RECIPIENT_TYPE_TO
]);
$object
->
SetFieldOptions
(
'RecipientType'
,
$field_options
);
}
/**
* Restores "To" option in possible option list in "RecipientType" field
*
* @param Array $params
*/
function
RestoreRecipientType
(
$params
)
{
$object
=&
$this
->
getObject
(
$params
);
/* @var $object kDBItem */
$field_options
=
$object
->
GetFieldOptions
(
'RecipientType'
);
$virtual_fields
=
$this
->
Application
->
getUnitOption
(
$this
->
Prefix
,
'VirtualFields'
);
$field_options
[
'options'
]
=
$virtual_fields
[
'RecipientType'
][
'options'
];
$object
->
SetFieldOptions
(
'RecipientType'
,
$field_options
);
}
}
Event Timeline
Log In to Comment