<?php
/**
* @category Anahita Social Engineâ¢
* @copyright Copyright (C) 2007 - 2010 rmdStudio Inc. and Peerglobe Technology Inc. All rights reserved.
* @license GNU GPLv2 <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
* @link http://www.anahitapolis.com
*/
class ComSocialengineViewPeopleHtml extends ComSocialengineViewHtml
{
public function __construct(array $options=array())
{
parent::__construct($options);
$this->assign('query', array('layout'=>'list'));
}
protected function prepareDefaultLayout()
{
$title = ($this->getMenuTitle()) ? $this->getMenuTitle() : JText::_('AN-SE-PEOPLE-HEADER-TITLE');
$header = KFactory::get('lib.anahita.uikit.header.page')->setTitle($title);
$this->assign('header', $header);
}
//end class
}