<?php
/**
* @package Joomla
* @subpackage Languages
* @version 1.0
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software and parts of it may contain or be derived from the
* GNU General Public License or other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
// DEVNOTE: Pull in the class that will be used to actually display our toolbar.
require_once( JApplicationHelper::getPath( 'toolbar_html' ) );
switch ($task)
{
// case 'add' :
// case 'edit':
// case 'editA':
// TOOLBAR_helloworld::_EDIT();
// break;
default:
TOOLBAR_helloworld::_DEFAULT();
break;
}
?>