Файл: upload/module/contact/include/component/controller/admincp/index.class.php
Строк: 91
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Miguel Espinoza
* @package Module_Contact
* @version $Id: index.class.php 2846 2011-08-18 09:30:49Z Raymond_Benc $
*/
class Contact_Component_Controller_Admincp_Index extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$this->template()->setTitle(Phpfox::getPhrase('contact.categories'))
->setBreadcrumb(Phpfox::getPhrase('contact.categories'), $this->url()->makeUrl('admincp.contact'))
->assign(array(
'aCategories' => Phpfox::getService('contact.contact')->getCategories(),
'aLanguages' => Phpfox::getService('language')->getAll()
)
)
->setHeader('cache', array(
'drag.js' => 'static_script',
'<script type="text/javascript">Core_drag.init({table: '#js_drag_drop', ajax: 'contact.manageOrdering'});</script>'
)
);
// is it adding a new category
if ("add" == $this->request()->get('action'))
{
$sClean = Phpfox::getLib('parse.input')->clean($this->request()->get('new_category'), 255);
if (Phpfox::getService('contact.process')->addCategory($this->request()->get('new_category')))
{
$this->url()->send('admincp.contact',null,Phpfox::getPhrase('contact.category_succesfully_added'));
}
else
{
$this->url()->send('admincp.contact',null,Phpfox::getPhrase('contact.category_could_not_be_added'));
}
}
// is it deleting categories
if ($this->request()->get('delete') && $aDeleteIds = $this->request()->getArray('id'))
{
if (Phpfox::getService('contact.process')->deleteMultiple($aDeleteIds))
{
$this->url()->send('admincp.contact', null, Phpfox::getPhrase('contact.categories_successfully_deleted'));
}
}
// is it updating categories
if ($this->request()->get('update'))
{
$aUpdatedCategories = array();
foreach ($this->request()->getArray('id') as $iId)
{
$aUpdatedCategories[] = array(
'category_id' => (int)$iId,
'ordering' => $this->request()->get('order_id_'.$iId),
'title' => $this->request()->get('title_'.$iId)
);
}
if (Phpfox::getService('contact.process')->updateMultiple($aUpdatedCategories))
{
$this->url()->send('admincp.contact', null, Phpfox::getPhrase('contact.categories_successfully_edited'));
}
else
{
$this->url()->send('admincp.contact', null, Phpfox::getPhrase('contact.categories_not_edited'));
}
}
}
/**
* 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('contact.component_controller_index_clean')) ? eval($sPlugin) : false);
}
}
?>