J1.5

How to create a custom button

From Joomla! Documentation

Revision as of 07:48, 31 May 2008 by Tsmarini (talk | contribs)

The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

The scripts below are used for using the back end toolbar when developing components or modules.

Put this script on your component or module code to make a custom button:

JToolBarHelper::custom("task", "icon", "icon over", "alt", boolean, boolean);

For a back button you can use this one:

JToolBarHelper::back();

Calcel button: JToolBarHelper::cancel();

Apply button:

JToolBarHelper::apply();