Файл: upload/module/admincp/include/component/controller/sql/index.class.php
Строк: 58
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: index.class.php 1268 2009-11-23 20:45:36Z Raymond_Benc $
*/
class Admincp_Component_Controller_Sql_Index extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
if (($aTables = $this->request()->getArray('tables')))
{
if ($this->request()->get('optimize'))
{
foreach ($aTables as $sTable)
{
Phpfox::getLib('database')->optimizeTable($sTable);
}
$this->url()->send('admincp.sql', null, Phpfox::getPhrase('admincp.table_s_successfully_optimized'));
}
elseif ($this->request()->get('repair'))
{
foreach ($aTables as $sTable)
{
Phpfox::getLib('database')->optimizeTable($sTable);
}
$this->url()->send('admincp.sql', null, Phpfox::getPhrase('admincp.table_s_successfully_repaired'));
}
}
$aItems = Phpfox::getLib('database')->getTableStatus();
$iSize = 0;
$iOverhead = 0;
foreach ($aItems as $iKey => $aItem)
{
$iSize += $aItem['Data_length'];
$iOverhead += $aItem['Data_free'];
$aItems[$iKey]['Name'] = $aItems[$iKey]['Name'];
}
$this->template()->setTitle(Phpfox::getPhrase('admincp.sql_maintenance_title'))
->setBreadcrumb(Phpfox::getPhrase('admincp.sql_maintenance_title'), $this->url()->makeUrl('admincp.sql'))
->assign(array(
'aItems' => $aItems,
'iSize' => $iSize,
'iOverhead' => $iOverhead,
'iCnt' => count($aItems)
)
);
}
/**
* 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('admincp.component_controller_sql_index_clean')) ? eval($sPlugin) : false);
}
}
?>