[ '. $text.' ]', 'sections.png' ); JToolBarHelper::save(); JToolBarHelper::apply(); if ( $edit ) { // for existing items the button is renamed `close` JToolBarHelper::cancel( 'cancel', 'Close' ); } else { JToolBarHelper::cancel(); } JToolBarHelper::help( 'screen.sections.edit' ); } /** * Draws the menu for Copying existing sections * @param int The published state (to display the inverse button) */ function _COPY() { JToolBarHelper::title( JText::_( 'Section' ) .': [ '. JText::_( 'Copy' ).' ]', 'section.png' ); //JToolBarHelper::title( JText::_( 'Copy Section' ), 'sections.png' ); JToolBarHelper::save( 'copysave' ); JToolBarHelper::cancel(); } /** * Draws the menu for Editing an existing category */ function _DEFAULT(){ JToolBarHelper::title( JText::_( 'Section Manager' ), 'sections.png' ); JToolBarHelper::publishList(); JToolBarHelper::unpublishList(); JToolBarHelper::customX( 'copyselect', 'copy.png', 'copy_f2.png', 'Copy', true ); JToolBarHelper::deleteList(); JToolBarHelper::editListX(); JToolBarHelper::addNewX(); JToolBarHelper::help( 'screen.sections' ); } }