View file PF.Base/module/event/include/component/block/browse.class.php

File size: 1.48Kb
<?php
/**
 * [PHPFOX_HEADER]
 */

defined('PHPFOX') or exit('NO DICE!');

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond_Benc
 * @package 		Phpfox_Component
 * @version 		$Id: browse.class.php 3342 2011-10-21 12:59:32Z Raymond_Benc $
 */
class Event_Component_Block_Browse extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{
		$iRsvp = $this->request()->get('rsvp', 1);
		$iPage = $this->request()->getInt('page');	
		
		$iPageSize = 20;

		$aEvent = Event_Service_Event::instance()->getEvent($this->request()->get('id'), true);
		
		list($iCnt, $aInvites) = Event_Service_Event::instance()->getInvites($aEvent['event_id'], $iRsvp, $iPage, $iPageSize);
		
		Phpfox_Pager::instance()->set(array('ajax' => 'event.browseList', 'page' => $iPage, 'size' => $iPageSize, 'count' => $iCnt, 'aParams' =>
			array(
					'id' => $aEvent['event_id'],
					'rsvp' => $iRsvp
				)
			)
		);
		
		$aLists = array(
			_p('attending') => '1',
			_p('maybe_attending') => '2',
			_p('awaiting_reply') => '0',
			_p('not_attending') => '3'
		);
		
		$this->template()->assign(array(
				'aEvent' => $aEvent,
				'aInvites' => $aInvites,
				'bIsInBrowse' => ($iPage > 0 ? true : false),
				'aLists' => $aLists
			)
		);
	}
	
	/**
	 * 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_browse_clean')) ? eval($sPlugin) : false);
	}
}