本文整理汇总了PHP中JToolBarHelper::Preferences方法的典型用法代码示例。如果您正苦于以下问题:PHP JToolBarHelper::Preferences方法的具体用法?PHP JToolBarHelper::Preferences怎么用?PHP JToolBarHelper::Preferences使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JToolBarHelper
的用法示例。
在下文中一共展示了JToolBarHelper::Preferences方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: display
/**
* Channels view display method
* @return void
**/
function display($tpl = null)
{
// Require specific controller if requested
$path = JPATH_COMPONENT . DS . 'controllers' . DS . 'orbitscriptsapi.php';
if (file_exists($path)) {
require_once $path;
}
// Create the controller
$orbitscriptsapi = new OrbitscriptsControllerOrbitscriptsApi();
JToolBarHelper::title(JText::_('<%SITE_NAME%> Ads Manager'), 'orbitscriptsads64.png');
if (file_exists(JPATH_ROOT . '/modules/mod_orbitscripts_ads/mod_orbitscripts_ads.php')) {
$msg = $orbitscriptsapi->testconnect();
if ($msg['code'] == 0) {
JToolBarHelper::publishList();
JToolBarHelper::unpublishList();
JToolBarHelper::addNewX('add', 'Create New Channel');
JToolBarHelper::editListX('edit', 'Edit Related Module');
JToolBarHelper::deleteList();
} else {
JError::raiseWarning(100, 'Warning: API return error. Code: <b>' . $msg['code'] . ' - ' . $msg['msg'] . '</b>. You cannot add new channels. Please check "Preferences".');
}
} else {
JError::raiseWarning(100, 'Warning: mod_orbitscripts_ads not found. You cannot add new channels. Please install this module.');
}
JToolBarHelper::Preferences('com_orbitscriptsads', '300', '570');
// Get data from the model
$items =& $this->get('Data');
$this->assignRef('items', $items);
parent::display($tpl);
}