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

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package 		Phpfox_Component
 * @version 		$Id: display.class.php 2689 2011-06-23 12:10:46Z Raymond_Benc $
 */
class Custom_Component_Block_Display extends Phpfox_Component
{
	private $_sTemplate = null;
	
	/**
	 * Controller
	 */
	public function process()
	{
		static $iUserGroupId = 0;
		static $bIsCustom = false;
		static $aCustomMain = array();

		if (!User_Service_Privacy_Privacy::instance()->hasAccess($this->getParam('item_id'), 'profile.profile_info'))
		{
			return false;
		}
		
		if ($iUserGroupId === 0)
		{
			$aUser = (PHPFOX_IS_AJAX ? array('user_group_id' => $this->getParam('user_group_id')) : $this->getParam('aUser'));

			$bIsCustom = User_Service_Group_Setting_Setting::instance()->getGroupParam($aUser['user_group_id'], 'custom.has_special_custom_fields');
			$iUserGroupId = $aUser['user_group_id'];
		}

		if (!isset($aCustomMain[$this->getParam('type_id')]))
		{
			$aCustomMain[$this->getParam('type_id')] = Custom_Service_Custom::instance()->getForDisplay($this->getParam('type_id'), $this->getParam('item_id'), ($bIsCustom ? $iUserGroupId : null));
		}

		if (($sCustomFieldName = $this->getParam('custom_field_id')))
		{			
			if (!isset($aCustomMain[$this->getParam('type_id')]['cf_' . $sCustomFieldName]))
			{				
				return false;
			}
		
			$aOutput = array($aCustomMain[$this->getParam('type_id')]['cf_' . $sCustomFieldName]);
		}		
		else 
		{
			$aOutput = $aCustomMain[$this->getParam('type_id')];
		}
        if (empty($aOutput)){
          return false;
        }
		$this->_sTemplate = $this->getParam('template');

		$this->template()->assign(array(
				'aCustomMain' => $aOutput,
				'sTemplate' => $this->getParam('template')
			)
		);
        return null;
	}
	
	/**
	 * Garbage collector. Is executed after this class has completed
	 * its job and the template has also been displayed.
	 */
	public function clean()
	{		
		$this->template()->clean(array(
				'aCustomMain'
			)
		);
		
		(($sPlugin = Phpfox_Plugin::get('custom.component_block_display_clean')) ? eval($sPlugin) : false);
	}
}