Файл: upload/module/blog/include/component/block/categories.class.php
Строк: 44
<?php
/**
* [PHPFOX_HEADER]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Blog
* @version $Id: categories.class.php 2323 2011-03-03 18:24:00Z Raymond_Benc $
*/
class Blog_Component_Block_Categories extends Phpfox_Component
{
/**
* Class process method wnich is used to execute this component.
*/
public function process()
{
$bIsProfile = false;
if ($this->getParam('bIsProfile') === true && ($aUser = $this->getParam('aUser')))
{
$bIsProfile = true;
}
$aCategories = Phpfox::getService('blog.category')->getCategories('c.user_id = ' . ($bIsProfile ? $aUser['user_id'] : '0'));
if (!is_array($aCategories))
{
return false;
}
if (!$aCategories)
{
return false;
}
foreach ($aCategories as $iKey => $aCategory)
{
$aCategories[$iKey]['url'] = ($bIsProfile ? $this->url()->permalink(array($aUser['user_name'] . '.blog.category', 'view' => $this->request()->get('view')), $aCategory['category_id'], $aCategory['name']) : $this->url()->permalink(array('blog.category', 'view' => $this->request()->get('view')), $aCategory['category_id'], $aCategory['name']));
}
$this->template()->assign(array(
'sHeader' => Phpfox::getPhrase('blog.categories'),
'aCategories' => $aCategories,
'iCategoryBlogView' => $this->request()->getInt('req3')
)
);
(($sPlugin = Phpfox_Plugin::get('blog.component_block_categories_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()
{
$this->template()->clean(array(
'aCategories'
)
);
(($sPlugin = Phpfox_Plugin::get('blog.component_block_categories_clean')) ? eval($sPlugin) : false);
}
}
?>