Файл: upload/module/language/include/component/block/admincp/form.class.php
Строк: 67
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: form.class.php 3386 2011-10-31 13:19:54Z Miguel_Espinoza $
*/
class Language_Component_Block_Admincp_Form extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$aLanguages = Phpfox::getService('language')->get();
$aVals = $this->request()->getArray('val');
$bAddInput = false;
$bHasValue = false;
if ($sMode = $this->getParam('mode'))
{
$this->template()->assign(array('sMode' => $sMode));
}
if (($sVarName = $this->getParam('var_name')))
{
$aValues = Phpfox::getService('language.phrase')->getValues($sVarName);
$bHasValue = true;
}
if (($bHasValue === true) || (($aValues = $this->getParam('value')) !== null))
{
$bAddInput = true;
$aKeys = array_keys($aValues);
$aVals2 = array_values($aValues);
if (isset($aVals2[0]))
{
$aVals[$this->getParam('id')] = $aVals2[0];
}
$this->setParam('value', null);
}
foreach ($aLanguages as $iKey => $aLanguage)
{
if ($bAddInput && isset($aKeys[0]))
{
$aLanguages[$iKey]['phrase_var_name'] = $aKeys[0];
}
$mPost = '';
if (isset($aVals[$this->getParam('id')][$aLanguage['language_id']]))
{
if ($this->getParam('mode', '') != '')
{
if (isset($aVals[$this->getParam('id')][$aLanguage['language_id']][$this->getParam('mode')]))
$mPost = $aVals[$this->getParam('id')][$aLanguage['language_id']][$this->getParam('mode')];
$this->template()->assign(array('sMode' => $this->getParam('mode')));;
}
if (isset($aVals[$this->getParam('id')][$aLanguage['language_id']])
&& !empty($aVals[$this->getParam('id')][$aLanguage['language_id']])
&& is_string($aVals[$this->getParam('id')][$aLanguage['language_id']]))
{
$mPost = $aVals[$this->getParam('id')][$aLanguage['language_id']];
}
}
$aLanguages[$iKey]['post_value'] = $mPost;
}
$this->template()->assign(array(
'aLanguages' => $aLanguages,
'sType' => $this->getParam('type'),
'sId' => $this->getParam('id')
)
);
}
/**
* Garbage collector. Is executed after this class has completed
* its job and the template has also been displayed.
*/
public function clean()
{
(($sPlugin = Phpfox_Plugin::get('language.component_block_admincp_form_clean')) ? eval($sPlugin) : false);
}
}
?>