View file PF.Base/module/egift/include/component/block/display.class.php

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox_Component
 * @version 		$Id: activity.class.php 982 2009-09-16 08:11:36Z Raymond_Benc $
 */
class Egift_Component_Block_Display extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{
		$aUser = $this->getParam('aUser');
		$aCategories = Egift_Service_Egift::instance()->getCategories(true);
		// Check if there are categories to display
		foreach ($aCategories as $iKey => $aCategory)
		{
			if ($aCategory['time_start'] == null && $aCategory['time_end'] == null)
			{
				if (!isset($aUser['is_user_birthday']) || $aUser['is_user_birthday'] != true)
				{
					unset($aCategories[$iKey]);
				}
				continue;
			}
			
			if ( PHPFOX_TIME < $aCategory['time_start'] || PHPFOX_TIME > $aCategory['time_end'])
			{
				unset($aCategories[$iKey]);
			}
		}

		if (empty($aCategories))
		{
			return false;
		}
		

		if (!defined('PHPFOX_IS_USER_PROFILE') || PHPFOX_IS_USER_PROFILE == false 
				|| (empty($aCategories) || (empty($aCategories) && (!isset($aUser['is_user_birthday']) || $aUser['is_user_birthday'] != true)))
				|| ($aUser['user_id'] == Phpfox::getUserId())
				)
		{
			// we should also check if its this user's birthday 
			return false;
		}
		
		$aEgifts = Egift_Service_Egift::instance()->getEgifts();

		foreach ($aEgifts as $sCat => $aCat)
		{
			foreach ($aCat as $iKey => $aGift)
			{
				if (is_array($aGift['price']) && !empty($aGift['price']) && isset($aEgifts[$sCat][$iKey]['price'][User_Service_User::instance()->getCurrency()]))
				{
					/*get the currency for this user*/
					$aGift['price'] = $aEgifts[$sCat][$iKey]['price'][User_Service_User::instance()->getCurrency()];
					$aGift['currency_id'] = User_Service_User::instance()->getCurrency();
				}
				else
				{
					$aGift['price'] = '0.00';
				}
				$aEgifts[$aGift['category_id']][] = $aGift;
			}
			unset($aEgifts[$sCat]);
		}

		$this->template()->assign(array(
				'aCategories' => $aCategories,
				'aEgifts' => $aEgifts
			)
		);
	}
	
	/**
	 * 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_block_activity_clean')) ? eval($sPlugin) : false);
	}
}