View of /mambo/branches/4.5.3h/administrator/components/com_templates/toolbar.templates.html.php
Parent Directory
|
Revision Log
Revision 1416 -
(download)
(annotate)
Fri Nov 23 12:01:17 2007 UTC (5 years, 5 months ago) by ocs_cms
File size: 2304 byte(s)
Fri Nov 23 12:01:17 2007 UTC (5 years, 5 months ago) by ocs_cms
File size: 2304 byte(s)
fixed header comment blocks to meet coding standards and to remove the invalid link to GNU/GPL version 2 license. Author and License references in the XML files replaced with mambo-foundation
<?php
/**
* @package Mambo
* @subpackage Templates
* @author Mambo Foundation Inc see README.php
* @copyright Mambo Foundation Inc.
* @license GNU/GPL Version 2, see LICENSE.php
* Mambo is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2 of the License.
*/
/** 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 Templates
*/
class TOOLBAR_templates {
function _DEFAULT($client) {
mosMenuBar::startTable();
if ($client=="admin") {
mosMenuBar::custom('publish', 'publish.png', 'publish_f2.png', 'Default', true);
mosMenuBar::spacer();
} else {
mosMenuBar::makeDefault();
mosMenuBar::spacer();
mosMenuBar::assign();
mosMenuBar::spacer();
}
mosMenuBar::addNew();
mosMenuBar::spacer();
mosMenuBar::editHtmlX( 'edit_source' );
mosMenuBar::spacer();
mosMenuBar::editCssX( 'edit_css' );
mosMenuBar::spacer();
mosMenuBar::deleteList();
mosMenuBar::spacer();
mosMenuBar::help( '453.screen.templates.main' );
mosMenuBar::endTable();
}
function _VIEW(){
mosMenuBar::startTable();
mosMenuBar::back();
mosMenuBar::endTable();
}
function _EDIT_SOURCE(){
mosMenuBar::startTable();
mosMenuBar::save( 'save_source' );
mosMenuBar::spacer();
mosMenuBar::cancel();
mosMenuBar::spacer();
mosMenuBar::help( '453.screen.templates.edithtml' );
mosMenuBar::endTable();
}
function _EDIT_CSS(){
mosMenuBar::startTable();
mosMenuBar::save( 'save_css' );
mosMenuBar::spacer();
mosMenuBar::cancel();
mosMenuBar::spacer();
mosMenuBar::help( '453.screen.templates.editcss' );
mosMenuBar::endTable();
}
function _ASSIGN(){
mosMenuBar::startTable();
mosMenuBar::save( 'save_assign', 'Save' );
mosMenuBar::spacer();
mosMenuBar::cancel();
mosMenuBar::spacer();
mosMenuBar::help( '453.screen.templates.assign' );
mosMenuBar::endTable();
}
function _POSITIONS(){
mosMenuBar::startTable();
mosMenuBar::save( 'save_positions' );
mosMenuBar::spacer();
mosMenuBar::cancel();
mosMenuBar::spacer();
mosMenuBar::help( '453.screen.templates.modules' );
mosMenuBar::endTable();
}
}
?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

