Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1167107
email_template_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
Tue, Sep 23, 5:26 AM
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Sep 25, 5:26 AM (1 d, 2 h)
Engine
blob
Format
Raw Data
Handle
755948
Attached To
rINP In-Portal
email_template_tp.php
View Options
<?php
/**
* @version $Id: email_template_tp.php 16513 2017-01-20 14:10:53Z alex $
* @package In-Portal
* @copyright Copyright (C) 1997 - 2010 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
EmailTemplateTagProcessor
extends
kDBTagProcessor
{
/**
* Removes "Enabled" column, when not in debug mode
*
* @param Array $params
*/
function
ModifyUnitConfig
(
$params
)
{
if
(
!
$this
->
Application
->
isDebugMode
()
)
{
/** @var Array $grids */
$grids
=
$this
->
Application
->
getUnitOption
(
$this
->
Prefix
,
'Grids'
,
Array
());
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
;
}
/** @var kDBItem $object */
$object
=
$this
->
getObject
(
$params
);
return
$object
->
GetDBField
(
$params
[
'check_field'
]);
}
/**
* To recipient read-only
*
* @param Array $params
* @return string
* @access protected
*/
protected
function
ToRecipientReadOnly
(
$params
)
{
return
!
$this
->
IsEditable
(
Array
(
'check_field'
=>
'AllowChangingRecipient'
));
}
/**
* Removes "To" options from possible options in "RecipientType" field
*
* @param Array $params
*/
function
RemoveToRecipientType
(
$params
)
{
/** @var kDBItem $object */
$object
=
$this
->
getObject
(
$params
);
$field_options
=
$object
->
GetFieldOptions
(
'RecipientType'
);
unset
(
$field_options
[
'options'
][
EmailTemplate
::
RECIPIENT_TYPE_TO
]);
$object
->
SetFieldOptions
(
'RecipientType'
,
$field_options
);
}
/**
* Restores "To" option in possible option list in "RecipientType" field
*
* @param Array $params
*/
function
RestoreRecipientType
(
$params
)
{
/** @var kDBItem $object */
$object
=
$this
->
getObject
(
$params
);
$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