View file PF.Base/module/blog/include/component/block/top.class.php

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

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

/**
 * 
 * 
 * @copyright		[PHPFOX_COPYRIGHT]
 * @author  		Raymond Benc
 * @package  		Module_Blog
 * @version 		$Id: top.class.php 2239 2010-12-13 13:39:04Z Raymond_Benc $
 */
class Blog_Component_Block_Top extends Phpfox_Component 
{
	/**
	 * Controller
	 */
	public function process()
	{
		if (defined('PHPFOX_IS_USER_PROFILE') || defined('PHPFOX_IS_AJAX_CONTROLLER'))
		{
			return false;
		}
		
		$aRows = User_Service_Activity::instance()->getTop('blog');

		if (!is_array($aRows))
		{
			return false;
		}
		
		if (!count($aRows))
		{
			return false;
		}

		$this->template()->assign(array(
				'sHeader' => _p('top_bloggers'),
				'aTopBloggers' => $aRows
			)
		);
		
		(($sPlugin = Phpfox_Plugin::get('blog.component_block_top_process')) ? eval($sPlugin) : false);
		
		return 'block';
	}
	
	/**
	 * Garbage collector. Is executed after this class has completed
	 * its job and the template has also been displayed.
	 */
	public function clean()
	{
		// Lets clear it from memory
		$this->template()->clean(array(
				'aTopBloggers',
				'aTopBlogger',
				'sHeader'
			)
		);
		(($sPlugin = Phpfox_Plugin::get('blog.component_block_top_clean')) ? eval($sPlugin) : false);
	}	
}