Файл: upload/module/core/include/component/controller/admincp/online-guest.class.php
Строк: 78
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Phpfox_Component
* @version $Id: online-guest.class.php 1631 2010-06-06 17:32:26Z Raymond_Benc $
*/
class Core_Component_Controller_Admincp_Online_Guest extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$iPage = $this->request()->getInt('page');
$aPages = array(20, 30, 40, 50);
$aDisplays = array();
foreach ($aPages as $iPageCnt)
{
$aDisplays[$iPageCnt] = Phpfox::getPhrase('core.per_page', array('total' => $iPageCnt));
}
$aFilters = array(
'search' => array(
'type' => 'input:text',
'search' => "AND ls.name LIKE '%[VALUE]%'"
),
'display' => array(
'type' => 'select',
'options' => $aDisplays,
'default' => '20'
),
'sort' => array(
'type' => 'select',
'options' => array(
'last_activity' => Phpfox::getPhrase('admincp.last_activity'),
'ip_address ' => Phpfox::getPhrase('admincp.ip_address')
),
'default' => 'last_activity',
'alias' => 'ls'
),
'sort_by' => array(
'type' => 'select',
'options' => array(
'DESC' => Phpfox::getPhrase('core.descending'),
'ASC' => Phpfox::getPhrase('core.ascending')
),
'default' => 'DESC'
)
);
$oSearch = Phpfox::getLib('search')->set(array(
'type' => 'onlineguests',
'filters' => $aFilters,
'search' => 'search'
)
);
$oSearch->setCondition('AND ls.user_id = 0');
list($iCnt, $aGuests) = Phpfox::getService('log')->getOnlineGuests($oSearch->getConditions(), $oSearch->getSort(), $oSearch->getPage(), $oSearch->getDisplay());
Phpfox::getLib('pager')->set(array('page' => $iPage, 'size' => $oSearch->getDisplay(), 'count' => $oSearch->getSearchTotal($iCnt)));
$this->template()->setTitle(Phpfox::getPhrase('admincp.online_guests'))
->setBreadcrumb(Phpfox::getPhrase('admincp.online'), $this->url()->makeUrl('admincp.core.online-guest'))
->setBreadcrumb(Phpfox::getPhrase('admincp.guests_bots'), null, true)
->assign(array(
'aGuests' => $aGuests
)
);
}
/**
* 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_online_guest_clean')) ? eval($sPlugin) : false);
}
}
?>