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

30 lines
540 B
PHP

<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
require_once( $mainframe->getPath( 'toolbar_html' ) );
require_once( $mainframe->getPath( 'toolbar_default' ) );
if ($act) $task = $act;
switch ($task) {
case "new":
menuartref::NEW_MENU();
break;
case "edit":
menuartref::EDIT_MENU();
break;
case "settings":
menuartref::CONFIG_MENU();
break;
case "language";
menuartref::LANG_MENU();
break;
default:
MENU_Default::MENU_Default();
break;
}
?>