0
我在添加工具欄添加按鈕在joomla 1.5組件的工具欄菜單中有問題。 我需要添加一個添加自定義按鈕的標準方式,所以這個我的按鈕被添加到我的菜單,但它不起作用我需要一個功能,這將幫助我從按鈕的參數,例如我的情況下的任務(AAAA)。在joomla 1.5組件中添加工具欄菜單項。
/*
ToolBarHelper::custom('aaaa', 'new', 'new', 'Add Article', 'add_article', false);
*/
這是整個工具欄類我如何獲取任務參數。
// no direct access
defined('_JEXEC') or die('Restricted access');
/**
* @package Joomla
* @subpackage Config
*/
class TOOLBAR_video
{
function _DEFAULT() {
/*
* DEVNOTE: This should make sense by itself now...
*/
JToolBarHelper::title( JText::_('Video Manager'), 'generic.png');
JToolBarHelper::custom('aaaa', 'new', 'new', 'Add Article', 'add_article', false);
JToolBarHelper::help('screen.video');
);
}
}