View of /mambo/trunk/administrator/components/com_sections/toolbar.sections.html.php
Parent Directory
|
Revision Log
Revision 1 -
(download)
(annotate)
Tue Dec 13 03:45:47 2005 UTC (7 years, 5 months ago) by root
File size: 1941 byte(s)
Tue Dec 13 03:45:47 2005 UTC (7 years, 5 months ago) by root
File size: 1941 byte(s)
Initial repository layout
<?php /** * @version $Id: toolbar.sections.html.php,v 1.2 2005/11/08 10:26:19 eliasan Exp $ * @package Mambo * @subpackage Sections * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); /** * @package Mambo * @subpackage Sections */ class TOOLBAR_sections { /** * Draws the menu for Editing an existing category */ function _EDIT() { global $id; mosMenuBar::startTable(); mosMenuBar::media_manager(); mosMenuBar::spacer(); mosMenuBar::save(); mosMenuBar::spacer(); mosMenuBar::apply(); mosMenuBar::spacer(); if ( $id ) { // for existing content items the button is renamed `close` mosMenuBar::cancel( 'cancel', 'Close' ); } else { mosMenuBar::cancel(); } mosMenuBar::spacer(); mosMenuBar::help( '453.screen.sections.edit' ); mosMenuBar::endTable(); } /** * Draws the menu for Copying existing sections * @param int The published state (to display the inverse button) */ function _COPY() { mosMenuBar::startTable(); mosMenuBar::save( 'copysave' ); mosMenuBar::spacer(); mosMenuBar::cancel(); mosMenuBar::spacer(); mosMenuBar::help( '453.screen.sections.copy' ); mosMenuBar::endTable(); } /** * Draws the menu for Editing an existing category */ function _DEFAULT(){ mosMenuBar::startTable(); mosMenuBar::publishList(); mosMenuBar::spacer(); mosMenuBar::unpublishList(); mosMenuBar::spacer(); mosMenuBar::addNewX(); mosMenuBar::spacer(); mosMenuBar::customX( 'copyselect', 'copy.png', 'copy_f2.png', 'Copy', true ); mosMenuBar::spacer(); mosMenuBar::editListX(); mosMenuBar::spacer(); mosMenuBar::deleteList(); mosMenuBar::spacer(); mosMenuBar::help( '453.screen.sections.main' ); mosMenuBar::endTable(); } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

