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' );
);
}
}