File size: 5.22Kb
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Service
* @version $Id: process.class.php 1558 2010-05-04 12:51:22Z Raymond_Benc $
*/
class Core_Service_Currency_Process extends Phpfox_Service
{
/**
* Class constructor
*/
public function __construct()
{
$this->_sTable = Phpfox::getT('currency');
}
/**
* @param array $aVals
* @param null $iUpdateId
*
* @return bool
*/
public function add($aVals, $iUpdateId = null)
{
$aForm = [
'currency_id' => [
'message' => _p('provide_a_3_character_currency_id'),
'type' => 'string:required'
],
'symbol' => [
'message' => _p('provide_a_symbol'),
'type' => 'string:required'
],
'phrase_var' => [
'message' => _p('provide_a_phrase_for_your_currency'),
'type' => 'phrase:required'
],
'is_active' => [
'message' => _p('select_if_this_currency_is_active_or_not'),
'type' => 'int:required'
]
];
$aVals = $this->validator()->process($aForm, $aVals);
if (!Phpfox_Error::isPassed()) {
return false;
}
$aVals['symbol'] = $this->preParse()->clean($aVals['symbol']);
if ($iUpdateId !== null)
{
if ($iUpdateId != $aVals['currency_id'])
{
$iCheck = $this->database()->select('COUNT(*)')
->from($this->_sTable)
->where('currency_id = \'' . $this->database()->escape($aVals['currency_id']) . '\'')
->execute('getSlaveField');
if ($iCheck)
{
return Phpfox_Error::set(_p('this_currency_is_already_in_use'));
}
}
$aPhrases = $aVals['phrase_var'];
unset($aVals['phrase_var']);
$this->database()->update($this->_sTable, $aVals, 'currency_id = \'' . $this->database()->escape($iUpdateId) . '\'');
foreach ($aPhrases as $sPhrase => $aPhrase)
{
$aLanguage = array_keys($aPhrase);
$aText = array_values($aPhrase);
Language_Service_Phrase_Process::instance()->updateVarName($aLanguage[0], $sPhrase, $aText[0]);
}
}
else
{
$iCheck = $this->database()->select('COUNT(*)')
->from($this->_sTable)
->where('currency_id = \'' . $this->database()->escape($aVals['currency_id']) . '\'')
->execute('getSlaveField');
if ($iCheck)
{
return Phpfox_Error::set(_p('this_currency_is_already_in_use'));
}
$insert = $aVals;
unset($insert['phrase_var']);
$insert['phrase_var'] = '__';
$this->database()->insert($this->_sTable, $insert);
$sPhraseVar = Language_Service_Phrase_Process::instance()->add(array(
'var_name' => 'custom_currency_' . $aVals['currency_id'],
'text' => $aVals['phrase_var']
)
);
$this->database()->update($this->_sTable, array('phrase_var' => $sPhraseVar), 'currency_id = \'' . $this->database()->escape($aVals['currency_id']) . '\'');
}
$this->cache()->remove();
return true;
}
/**
* @param int $iId
* @param array $aVals
*
* @return bool
*/
public function update($iId, $aVals)
{
return $this->add($aVals, $iId);
}
/**
* @param int $iId
* @param string $sType
*/
public function updateDefault($iId, $sType)
{
Phpfox::isUser(true);
Phpfox::getUserParam('admincp.has_admin_access', true);
$this->database()->update($this->_sTable, array('is_default' => '0'), '1');
$this->database()->update($this->_sTable, array('is_default' => '1'), 'currency_id = \'' . $this->database()->escape($iId) . '\'');
$this->cache()->remove('currency');
}
/**
* @param int $iId
* @param int $iType
*/
public function updateActivity($iId, $iType)
{
Phpfox::isUser(true);
Phpfox::getUserParam('admincp.has_admin_access', true);
$this->database()->update($this->_sTable, array('is_active' => (int) ($iType == '1' ? 1 : 0)), 'currency_id = \'' . $this->database()->escape($iId) . '\'');
$this->cache()->remove('currency');
}
/**
* @param string $sId
*
* @return bool
*/
public function delete($sId)
{
$this->database()->delete($this->_sTable, 'currency_id = \'' . $this->database()->escape($sId) . '\'');
$this->cache()->remove('currency');
return true;
}
/**
* If a call is made to an unknown method attempt to connect
* it to a specific plug-in with the same name thus allowing
* plug-in developers the ability to extend classes.
*
* @param string $sMethod is the name of the method
* @param array $aArguments is the array of arguments of being passed
*
* @return null;
*/
public function __call($sMethod, $aArguments)
{
/**
* Check if such a plug-in exists and if it does call it.
*/
if ($sPlugin = Phpfox_Plugin::get('core.service_currency_process__call'))
{
eval($sPlugin);
return null;
}
/**
* No method or plug-in found we must throw a error.
*/
Phpfox_Error::trigger('Call to undefined method ' . __CLASS__ . '::' . $sMethod . '()', E_USER_ERROR);
}
}