View of /mambo/branches/4.6/administrator/components/com_installer/toolbar.installer.html.php
Parent Directory
|
Revision Log
Revision 1756 -
(download)
(annotate)
Thu May 28 06:41:09 2009 UTC (4 years ago) by elpie
File size: 1110 byte(s)
Thu May 28 06:41:09 2009 UTC (4 years ago) by elpie
File size: 1110 byte(s)
! Added back copyright date & note (which should not be needed, but which is) that copyright notices must be retained.
<?php
/**
* @package Mambo
* @subpackage Installer
* @author Mambo Foundation Inc see README.php
* @copyright (C) 2000 - 2009 Mambo Foundation Inc.
* See COPYRIGHT.php for copyright notices and details.
* @license GNU/GPL Version 2, see LICENSE.php
*
* Redistributions of files must retain the above copyright notice.
*
* 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.
*/
class TOOLBAR_installer
{
function _DEFAULT() {
mosMenuBar::startTable();
if ($GLOBALS['task'] == 'thesource') {
mosMenuBar::help( 'source' );
} else {
mosMenuBar::help( 'universal' );
}
mosMenuBar::endTable();
}
function _DEFAULT2($element) {
mosMenuBar::startTable();
mosMenuBar::deleteList( '', 'remove', T_('Uninstall'));
mosMenuBar::spacer();
mosMenuBar::help( $element );
mosMenuBar::endTable();
}
function _NEW() {
mosMenuBar::startTable();
mosMenuBar::save();
mosMenuBar::spacer();
mosMenuBar::cancel();
mosMenuBar::endTable();
}
}
?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

