Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1172712
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
Mon, Sep 29, 11:15 PM
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Oct 1, 11:15 PM (1 d, 14 h)
Engine
blob
Format
Raw Data
Handle
760023
Attached To
rINP In-Portal
email_template_tp.php
View Options
<?php
/**
* @version $Id: email_template_tp.php 16519 2017-01-20 20:21:46Z 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
()
)
{
$config
=
$this
->
getUnitConfig
();
$grids
=
$config
->
getGrids
(
Array
());
foreach
(
$grids
as
$grid_name
=>
$grid_data
)
{
if
(
array_key_exists
(
'Enabled'
,
$grid_data
[
'Fields'
])
)
{
unset
(
$grids
[
$grid_name
][
'Fields'
][
'Enabled'
]);
}
}
$config
->
setGrids
(
$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_field_options
=
$this
->
getUnitConfig
()->
getVirtualFieldByName
(
'RecipientType'
);
$field_options
[
'options'
]
=
$virtual_field_options
[
'options'
];
$object
->
SetFieldOptions
(
'RecipientType'
,
$field_options
);
}
/**
* Determine if primary translation should be shown
*
* @param Array $params
* @return string
* @access protected
*/
protected
function
ShowSourceLanguage
(
$params
)
{
if
(
$this
->
IsNewItem
(
$params
)
)
{
return
false
;
}
$object
=
$this
->
getObject
(
$params
);
/* @var $object kDBItem */
$ml_helper
=
$this
->
Application
->
recallObject
(
'kMultiLanguageHelper'
);
/* @var $ml_helper kMultiLanguageHelper */
return
!
$ml_helper
->
editingInSourceLanguage
(
$object
->
GetDBField
(
'TranslateFromLanguage'
));
}
/**
* Shows field label with %s replaced with source translation language
*
* @param Array $params
* @return string
* @access protected
*/
protected
function
SourceLanguageTitle
(
$params
)
{
$object
=
$this
->
getObject
(
$params
);
/* @var $object kDBItem */
$ml_helper
=
$this
->
Application
->
recallObject
(
'kMultiLanguageHelper'
);
/* @var $ml_helper kMultiLanguageHelper */
return
$ml_helper
->
replaceSourceLanguage
(
$object
,
$params
[
'label'
]);
}
}
Event Timeline
Log In to Comment