This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/administrator/components/com_obrens/toolbar.obrens.html.php
2012-09-18 20:02:43 +00:00

41 lines
1018 B
PHP

<?php
# ObrEns - Fichero para menu administrador Mambo
# Version : 1.0
# By : 2005 Rodax Software
# Web : www.rodax-software.com
# License : GNU GPL Public License
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
class menuartref {
function NEW_MENU() {
mosMenuBar::startTable();
mosMenuBar::save();
mosMenuBar::cancel();
mosMenuBar::spacer();
mosMenuBar::endTable();
}
function EDIT_MENU() {
mosMenuBar::startTable();
mosMenuBar::save();
mosMenuBar::cancel();
mosMenuBar::spacer();
mosMenuBar::endTable();
}
function CONFIG_MENU() {
mosMenuBar::startTable();
mosMenuBar::save( 'savesettings', 'Save Settings' );
mosMenuBar::back();
mosMenuBar::spacer();
mosMenuBar::endTable();
}
function LANG_MENU() {
mosMenuBar::startTable();
mosMenuBar::save( 'savelanguage', 'Save File' );
mosMenuBar::cancel();
mosMenuBar::spacer();
mosMenuBar::endTable();
}
}
?>