File size: 875B
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: system.class.php 2525 2011-04-13 18:03:20Z Raymond_Benc $
*/
class Core_Component_Controller_Admincp_System extends Phpfox_Component
{
/**
* Controller
*/
public function process()
{
$this->template()->setTitle(_p('system_overview'))
->setBreadCrumb(_p('tools'))
->setSectionTitle(_p('system_overview'))
->assign(array(
'aStats' => Core_Service_System::instance()->get()
)
);
}
/**
* 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_system_clean')) ? eval($sPlugin) : false);
}
}