J1.5:How to create a custom button

From Joomla! Documentation
(Difference between revisions)
Jump to: navigation, search
(Tidied up a bit. This page is useful but needs to be completed.)
m
Line 1: Line 1:
 
{{cookiejar}}
 
{{cookiejar}}
 
{{incomplete}}
 
{{incomplete}}
 +
[[Category:Development]]
 +
 
The code below is used for adding buttons to the back-end toolbar when developing components and modules.
 
The code below is used for adding buttons to the back-end toolbar when developing components and modules.
  

Revision as of 23:31, 8 July 2008

Replacement filing cabinet.png
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Note

Please note that the content on this page is currently incomplete. Please treat it as a work in progress.

This article was last edited by Masterchief (talk| contribs) 4 years ago. (Purge)

The code below is used for adding buttons to the back-end toolbar when developing components and modules.

Contents

Apply button

JToolBarHelper::apply();

Back button

JToolBarHelper::back();

Cancel button

JToolBarHelper::cancel();

Custom button

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

Upload button

  • Method 1:
// Add an upload button and view a popup screen width 550 and height 400
$alt = "Upload";
$bar=& JToolBar::getInstance( 'toolbar' );
$bar->appendButton( 'Popup', 'upload', $alt, 'index.php', 550, 400 );
  • Method 2:
// You view button for popup media manager tools
JToolBarHelper::media_manager( '/' );
Personal tools
Namespaces

Variants
Actions
Navigation
Joomla! Sites
Toolbox