Skip to content

Instantly share code, notes, and snippets.

@Javlopez
Created June 2, 2011 18:35
Show Gist options
  • Save Javlopez/1004975 to your computer and use it in GitHub Desktop.
Save Javlopez/1004975 to your computer and use it in GitHub Desktop.
Configuracion
// no direct access
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
/**
* @package Joomla
* @subpackage Config
*/
class TOOLBAR_config
{
function _DEFAULT() {
JToolBarHelper::title( JText::_( 'Global Configuration' ), 'config.png' );
JToolBarHelper::save();
JToolBarHelper::apply();
JToolBarHelper::cancel('cancel', 'Close');
JToolBarHelper::help( 'screen.config' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment