<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Service
* @version $Id: process.class.php 1496 2010-03-05 17:15:05Z Raymond_Benc $
*/
class Core_Service_Stat_Process extends Phpfox_Service
{
/**
* Class constructor
*/
public function __construct()
{
$this->_sTable = Phpfox::getT('site_stat');
}
/**
* @param array $aVals
* @param null|int $iUpdateId
*
* @return bool
*/
public function add($aVals, $iUpdateId = null)
{
$aForm = [
'product_id' => [
'message' => _p('select_a_product'),
'type' => 'product_id:required'
],
'module_id' => [
'message' => _p('select_a_module'),
'type' => 'module_id:required'
],
'phrase_var' => [
'message' => _p('at_least_one_title_for_the_stat_is_required'),
'type' => 'phrase:required'
],
'stat_link' => [
'message' => _p('link_for_the_stat_is_required'),
'type' => 'string:required'
],
'stat_image' => [
'message' => _p('image_for_the_stat_is_required'),
'type' => 'string'
],
'php_code' => [
'message' => _p('php_code_for_the_stat_is_required'),
'type' => 'php_code:required'
],
'is_active' => [
'message' => _p('select_if_the_stat_is_active_or_not'),
'type' => 'int:required'
]
];
if ($iUpdateId !== null) {
unset($aForm['product_id'], $aForm['module_id']);
$aVals = $this->validator()->process($aForm, $aVals);
if (!Phpfox_Error::isPassed())
{
return false;
}
$aPhrases = $aVals['phrase_var'];
unset($aVals['phrase_var']);
$this->database()->update($this->_sTable, $aVals, 'stat_id = ' . $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
{
$aVals = $this->validator()->process($aForm, $aVals);
if (!Phpfox_Error::isPassed())
{
return false;
}
$aPhrases = $aVals['phrase_var'];
unset($aVals['phrase_var']);
$iId = $this->database()->insert($this->_sTable, $aVals);
$sPhraseVar = Language_Service_Phrase_Process::instance()->add(array(
'var_name' => 'stat_title_' . $iId,
'text' => $aPhrases
)
);
$this->database()->update($this->_sTable, array('phrase_var' => $sPhraseVar), 'stat_id = ' . $iId);
}
$this->cache()->remove('stat', 'substr');
return true;
}
/**
* @param array $aVals
*
* @return string|null
*/
public function updateOrder($aVals)
{
Phpfox::isUser(true);
Phpfox::getUserParam('admincp.has_admin_access', true);
if (!isset($aVals['ordering']))
{
return Phpfox_Error::set(_p('not_a_valid_request'));
}
foreach ($aVals['ordering'] as $iId => $iOrder)
{
$this->database()->update($this->_sTable, array('ordering' => (int) $iOrder), 'stat_id = ' . (int) $iId);
}
$this->cache()->remove('stat', 'substr');
return null;
}
/**
* @param int $iId
*
* @return bool
*/
public function delete($iId)
{
Phpfox::isUser(true);
Phpfox::getUserParam('admincp.has_admin_access', true);
$aStat = $this->database()->select('stat_id, module_id')
->from($this->_sTable)
->where('stat_id = ' . (int) $iId)
->execute('getSlaveRow');
if (!isset($aStat['stat_id']))
{
return Phpfox_Error::set(_p('the_stat_you_are_looking_for_cannot_be_found'));
}
$this->database()->delete($this->_sTable, 'stat_id = ' . $aStat['stat_id']);
$this->database()->delete(Phpfox::getT('language_phrase'), 'var_name = \'stat_title_' . $aStat['stat_id'] . '\'');
$this->cache()->remove('stat', 'substr');
return true;
}
/**
* @param int $iId
* @param array $aVals
*
* @return bool
*/
public function update($iId, $aVals)
{
return $this->add($aVals, $iId);
}
/**
* @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)), 'stat_id = ' . (int) $iId);
$this->cache()->remove('stat', 'substr');
}
/**
* 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_stat_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);
}
}