本文整理汇总了PHP中JLToolBarHelper::unpublishList方法的典型用法代码示例。如果您正苦于以下问题:PHP JLToolBarHelper::unpublishList方法的具体用法?PHP JLToolBarHelper::unpublishList怎么用?PHP JLToolBarHelper::unpublishList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JLToolBarHelper
的用法示例。
在下文中一共展示了JLToolBarHelper::unpublishList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: addToolbar
protected function addToolbar()
{
JToolBarHelper::title(JText::_('COM_JOOMLEAGUE_ADMIN_TREETOS_TITLE'), 'Tree');
JLToolBarHelper::apply('treeto.saveshort');
JLToolBarHelper::publishList('treeto.publish');
JLToolBarHelper::unpublishList('treeto.unpublish');
JToolBarHelper::divider();
JLToolBarHelper::addNew('treeto.save');
JLToolBarHelper::deleteList(JText::_('COM_JOOMLEAGUE_ADMIN_TREETOS_WARNING'), 'treeto.remove');
JToolBarHelper::divider();
JToolBarHelper::help('screen.joomleague', true);
}
示例2: addToolbar
protected function addToolbar()
{
JToolBarHelper::title(JText::_('COM_JOOMLEAGUE_ADMIN_TREETOS_TITLE'), 'Tree');
JLToolBarHelper::apply('treeto.saveshort');
JLToolBarHelper::publishList('treeto.publish');
JLToolBarHelper::unpublishList('treeto.unpublish');
JToolBarHelper::divider();
JLToolBarHelper::addNew('treeto.save');
JLToolBarHelper::deleteList(JText::_('COM_JOOMLEAGUE_ADMIN_TREETOS_WARNING'), 'treeto.remove');
JToolBarHelper::divider();
JLToolBarHelper::onlinehelp();
JToolBarHelper::preferences(JRequest::getCmd('option'));
}
示例3: addToolbar
/**
* Add the page title and toolbar.
*/
protected function addToolbar()
{
JToolBarHelper::title(JText::_('COM_JOOMLEAGUE_ADMIN_EVENTS_TITLE'), 'jl-events');
JLToolBarHelper::addNew('eventtype.add');
JLToolBarHelper::editList('eventtype.edit');
JLToolBarHelper::publishList('eventtype.publish');
JLToolBarHelper::unpublishList('eventtype.unpublish');
JToolBarHelper::divider();
JLToolBarHelper::custom('eventtype.import', 'upload', 'upload', 'COM_JOOMLEAGUE_GLOBAL_CSV_IMPORT', false);
JLToolBarHelper::archiveList('eventtype.export', 'COM_JOOMLEAGUE_GLOBAL_XML_EXPORT');
JLToolBarHelper::deleteList('', 'eventtype.remove');
JToolBarHelper::divider();
JToolBarHelper::help('screen.joomleague', true);
}