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

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox_Component
 * @version 		$Id: profile.class.php 2542 2011-04-18 08:52:03Z Raymond_Benc $
 */
class Event_Component_Block_Profile extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{
		$aUser = $this->getParam('aUser');
		
		if (!User_Service_Privacy_Privacy::instance()->hasAccess($aUser['user_id'], 'event.display_on_profile'))
		{
			return false;
		}			
		
		$aEvents = Event_Service_Event::instance()->getForProfileBlock($aUser['user_id']);

		if (!count($aEvents) && !defined('PHPFOX_IN_DESIGN_MODE'))
		{
			return false;
		}
		
		$this->template()->assign(array(
				'sHeader' => _p('events_i_m_attending'),
				'sBlockJsId' => 'profile_event',
				'aEvents' => $aEvents
			)
		);
		
		if (count($aEvents) == 1)
		{
			$this->template()->assign('aFooter', array(
					'View More' => $this->url()->makeUrl('event', array('user' => $aUser['user_id']))
				)
			);
		}
		
		if (Phpfox::getUserId() == $aUser['user_id'])
		{
			$this->template()->assign('sDeleteBlock', 'profile');
		}		
		
		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_profile_clean')) ? eval($sPlugin) : false);
	}	
}