File size: 1.57Kb
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Component
* @version $Id: index.class.php 6113 2013-06-21 13:58:40Z Raymond_Benc $
*/
class Core_Component_Controller_Admincp_Currency_Index extends Phpfox_Component
{
/**
* Controller
*/
public function process()
{
if (($sDelete = $this->request()->get('delete')))
{
if (Core_Service_Currency_Process::instance()->delete($sDelete))
{
$this->url()->send('admincp.core.currency', null, _p('currency_successfully_deleted'));
}
}
$this->template()->setTitle(_p('currency_manager'))
->setBreadCrumb(_p('currency_manager'), $this->url()->makeUrl('admincp.core.currency'))
->setSectionTitle(_p('currencies'))
->setActionMenu([
_p('new_currency') => [
'url' => $this->url()->makeUrl('admincp.core.currency.add'),
'class' => 'popup'
]
])
->setHeader('cache', array(
'drag.js' => 'static_script',
'<script type="text/javascript">$Behavior.coreDragInit = function() { Core_drag.init({table: \'#js_drag_drop\', ajax: \'core.currencyOrdering\'}); }</script>'
)
)
->assign(array(
'aCurrencies' => Core_Service_Currency_Currency::instance()->getForBrowse()
)
);
}
/**
* 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('core.component_controller_admincp_currency_index_clean')) ? eval($sPlugin) : false);
}
}