File size: 1.72Kb
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond_Benc
* @package Phpfox_Component
* @version $Id: attending.class.php 3342 2011-10-21 12:59:32Z Raymond_Benc $
*/
class Event_Component_Block_Attending extends Phpfox_Component
{
/**
* Controller
*/
public function process()
{
$iPageSize = 6;
$aEvent = $this->getParam('aEvent');
if (!$aEvent) $aEvent = Event_Service_Event::instance()->getEvent($aEvent = $this->getParam('iEvent'));
list($iCnt, $aInvites) = Event_Service_Event::instance()->getInvites($aEvent['event_id'], 1, 1, $iPageSize);
list($iAwaitingCnt, $aAwaitingInvites) = Event_Service_Event::instance()->getInvites($aEvent['event_id'], 0, 1, $iPageSize);
list($iMaybeCnt, $aMaybeInvites) = Event_Service_Event::instance()->getInvites($aEvent['event_id'], 2, 1, $iPageSize);
list($iNotAttendingCnt, $aNotAttendingInvites) = Event_Service_Event::instance()->getInvites($aEvent['event_id'], 3, 1, $iPageSize);
$this->template()->assign(array(
'iAttendingCnt' => $iCnt,
'aInvites' => $aInvites,
'aAwaitingInvites' => $aAwaitingInvites,
'iAwaitingCnt' => $iAwaitingCnt,
'aMaybeInvites' => $aMaybeInvites,
'iMaybeCnt' => $iMaybeCnt,
'iNotAttendingCnt' => $iNotAttendingCnt,
'aNotAttendingInvites' => $aNotAttendingInvites,
'aFooter' => array(
_p('view_guest_list') => '#'
)
)
);
return 'block';
}
/**
* 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('event.component_block_attending_clean')) ? eval($sPlugin) : false);
}
}