View file PF.Base/module/core/include/component/block/message.class.php

File size: 726B
<?php
/**
 * [PHPFOX_HEADER]
 */

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package  		Module_Core
 * @version 		$Id: message.class.php 225 2009-02-13 13:24:59Z Raymond_Benc $
 */
class Core_Component_Block_Message extends Phpfox_Component
{
	/**
	 * Controller
	 */
	public function process()
	{		
		$this->template()->assign(array(
				'sMessage' => $this->getParam('sMessage')
			)
		);
	}
	
	/**
	 * 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_message_clean')) ? eval($sPlugin) : false);
	}
}