本文整理汇总了PHP中JoomleagueHelper::sideMenu方法的典型用法代码示例。如果您正苦于以下问题:PHP JoomleagueHelper::sideMenu方法的具体用法?PHP JoomleagueHelper::sideMenu怎么用?PHP JoomleagueHelper::sideMenu使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JoomleagueHelper
的用法示例。
在下文中一共展示了JoomleagueHelper::sideMenu方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: display
public function display($tpl = null)
{
if ($this->getLayout() == 'assignplayers') {
$this->_displayAssignPlayers($tpl);
return;
}
JHtml::_('behavior.calendar');
$app = JFactory::getApplication();
$jinput = $app->input;
$option = $jinput->getCmd('option');
$params = JComponentHelper::getParams($option);
$model = $this->getModel();
$filter_state = $app->getUserStateFromRequest($this->get('context') . '.filter_state', 'filter_state', '', 'word');
$filter_order = $app->getUserStateFromRequest($this->get('context') . '.filter_order', 'filter_order', 'pl.ordering', 'cmd');
$filter_order_Dir = $app->getUserStateFromRequest($this->get('context') . '.filter_order_Dir', 'filter_order_Dir', '', 'word');
$search = $app->getUserStateFromRequest($this->get('context') . '.search', 'search', '', 'string');
$search_mode = $app->getUserStateFromRequest($this->get('context') . '.search_mode', 'search_mode', '', 'string');
$items = $this->get('Data');
$total = $this->get('Total');
$pagination = $this->get('Pagination');
$app->setUserState($option . 'task', '');
// state filter
$lists['state'] = JHtml::_('grid.state', $filter_state);
// table ordering
$lists['order_Dir'] = $filter_order_Dir;
$lists['order'] = $filter_order;
// search filter
$lists['search'] = $search;
$lists['search_mode'] = $search_mode;
//build the html select list for positions
$positionsList[] = JHtml::_('select.option', '0', JText::_('COM_JOOMLEAGUE_GLOBAL_SELECT_POSITION'));
$positions = JModelLegacy::getInstance('person', 'joomleaguemodel')->getPositions();
if ($positions) {
$positions = array_merge($positionsList, $positions);
}
$lists['positions'] = $positions;
unset($positionsList);
//build the html options for nation
$nation[] = JHtml::_('select.option', '0', JText::_('COM_JOOMLEAGUE_GLOBAL_SELECT_NATION'));
if ($res = Countries::getCountryOptions()) {
$nation = array_merge($nation, $res);
}
$lists['nation'] = $nation;
unset($nation);
$this->user = JFactory::getUser();
$this->config = JFactory::getConfig();
$this->lists = $lists;
$this->items = $items;
$this->pagination = $pagination;
$this->request_url = JFactory::getURI()->toString();
$this->component_params = $params;
$sideMenu = JoomleagueHelper::sideMenu();
$this->sidebar = $sideMenu;
$this->addToolbar();
parent::display($tpl);
}