我正在将为2.5制作的组件迁移到Joomla 3.4。现在一切正常,除了一件事:Joomla工具栏按钮在后端根本没有反应。有什么不对吗?它与Joomla 2.5配合得很好。
// Set the toolbar
$this->addToolBar();
// Display the template
parent::display($tpl);
}
/**
* Setting the toolbar
*/
protected function addToolBar()
{
JFactory::getApplication()->input->set('hidemainmenu', true);
$isNew = ($this->item->id == 0);
JToolBarHelper::title($isNew ? JText::_('New note') : JText::_('Edit note'));
JToolBarHelper::save('guestbook.save');
JToolBarHelper::cancel('guestbook.cancel', $isNew ? 'JTOOLBAR_CANCEL' : 'JTOOLBAR_CLOSE');
}