Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1171315
phrase_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, Sep 28, 12:45 AM
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Sep 30, 12:45 AM (1 d, 10 h)
Engine
blob
Format
Raw Data
Handle
758960
Attached To
rINP In-Portal
phrase_tp.php
View Options
<?php
/**
* @version $Id: phrase_tp.php 15698 2013-02-19 11:33:17Z alex $
* @package In-Portal
* @copyright Copyright (C) 1997 - 2011 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
PhraseTagProcessor
extends
kDBTagProcessor
{
/**
* Determines, that we can close phrase editing form without parent window refreshing
*
* @param Array $params
* @return bool
*/
function
UseQuickFormCancel
(
$params
)
{
return
$this
->
Application
->
GetVar
(
'simple_mode'
)
&&
(
int
)
$this
->
Application
->
ConfigValue
(
'UsePopups'
);
}
/**
* Returns phrase count for given module
*
* @param Array $params
* @return int
* @access protected
*/
protected
function
PhraseCount
(
$params
)
{
static
$cache
=
null
;
if
(!
isset
(
$cache
))
{
$sql
=
'SELECT COUNT(*), Module
FROM '
.
$this
->
getUnitConfig
()->
getTableName
()
.
'
GROUP BY Module'
;
$cache
=
$this
->
Conn
->
GetCol
(
$sql
,
'Module'
);
}
$module
=
$params
[
'module'
];
return
array_key_exists
(
$module
,
$cache
)
?
$cache
[
$module
]
:
0
;
}
/**
* Returns e-mail template count for given module
*
* @param Array $params
* @return int
* @access protected
*/
protected
function
TemplateCount
(
$params
)
{
static
$cache
=
null
;
if
(!
isset
(
$cache
))
{
$sql
=
'SELECT COUNT(*), IF(Module LIKE "Core:%", "Core", Module) AS Module
FROM '
.
$this
->
Application
->
getUnitConfig
(
'email-template'
)->
getTableName
()
.
'
GROUP BY Module'
;
$cache
=
$this
->
Conn
->
GetCol
(
$sql
,
'Module'
);
}
$module
=
$params
[
'module'
];
return
array_key_exists
(
$module
,
$cache
)
?
$cache
[
$module
]
:
0
;
}
/**
* 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