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_joomap/toolbar.joomap.html.php
2012-09-18 20:02:43 +00:00

31 lines
767 B
PHP

<?php
/**
* The Joomap component administrator toolbar
* @author Daniel Grothe
* @see admin.joomap.php
* @package Joomap_Admin
*/
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
/** Administrator Toolbar output */
class TOOLBAR_joomap {
/**
* Draws the toolbar
*/
function _DEFAULT() {
mosMenuBar::startTable();
/*
//Testing
mosMenuBar::custom('backup', 'archive.png', 'archive_f2.png', "Backup Settings", false);
mosMenuBar::custom('restore', 'restore.png', 'restore_f2.png', "Restore Settings", false);
mosMenuBar::spacer();
*/
mosMenuBar::save('save', _JOOMAP_TOOLBAR_SAVE);
mosMenuBar::spacer();
mosMenuBar::cancel('cancel', _JOOMAP_TOOLBAR_CANCEL);
mosMenuBar::endTable();
}
}
?>