本文整理匯總了PHP中JLToolBarHelper::archiveList方法的典型用法代碼示例。如果您正苦於以下問題:PHP JLToolBarHelper::archiveList方法的具體用法?PHP JLToolBarHelper::archiveList怎麽用?PHP JLToolBarHelper::archiveList使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類JLToolBarHelper
的用法示例。
在下文中一共展示了JLToolBarHelper::archiveList方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: addToolbar
/**
* Add the page title and toolbar.
*/
protected function addToolbar()
{
JToolBarHelper::title(JText::_('COM_JOOMLEAGUE_ADMIN_SPORTSTYPES_TITLE'), 'jl-sportstypes');
JLToolBarHelper::addNew('sportstype.add');
JLToolBarHelper::editList('sportstype.edit');
JLToolBarHelper::custom('sportstype.import', 'upload', 'upload', 'COM_JOOMLEAGUE_GLOBAL_CSV_IMPORT', false);
JLToolBarHelper::archiveList('sportstype.export', 'COM_JOOMLEAGUE_GLOBAL_XML_EXPORT');
JLToolBarHelper::deleteList('', 'sportstype.remove');
JToolBarHelper::divider();
JToolBarHelper::help('screen.joomleague', true);
}
示例2: addToolbar
/**
* Add the page title and toolbar.
*
* @since 1.7
*/
protected function addToolbar()
{
// Set toolbar items for the page
JToolBarHelper::title(JText::_('COM_JOOMLEAGUE_ADMIN_SPORTSTYPES_TITLE'), 'sportstypes');
JLToolBarHelper::addNewX('sportstype.add');
JLToolBarHelper::editListX('sportstype.edit');
JLToolBarHelper::custom('sportstype.import', 'upload', 'upload', JText::_('COM_JOOMLEAGUE_GLOBAL_CSV_IMPORT'), false);
JLToolBarHelper::archiveList('sportstype.export', JText::_('COM_JOOMLEAGUE_GLOBAL_XML_EXPORT'));
JLToolBarHelper::deleteList('', 'sportstype.remove');
JToolBarHelper::divider();
JLToolBarHelper::onlinehelp();
JToolBarHelper::preferences(JRequest::getCmd('option'));
}
示例3: addToolbar
/**
* Add the page title and toolbar.
*
* @since 1.7
*/
protected function addToolbar()
{
// Set toolbar items for the page
JToolBarHelper::title(JText::_('COM_JOOMLEAGUE_ADMIN_TEAMS_TITLE'), 'Teams');
JLToolBarHelper::addNew('team.add');
JLToolBarHelper::editList('team.edit');
JLToolBarHelper::custom('team.copysave', 'copy.png', 'copy_f2.png', 'COM_JOOMLEAGUE_GLOBAL_COPY', true);
JLToolBarHelper::custom('team.import', 'upload', 'upload', 'COM_JOOMLEAGUE_GLOBAL_CSV_IMPORT', false);
JLToolBarHelper::archiveList('team.export', 'COM_JOOMLEAGUE_GLOBAL_XML_EXPORT');
JLToolBarHelper::deleteList('', 'team.remove');
JToolBarHelper::divider();
JToolBarHelper::help('screen.joomleague', true);
}