API16:JToolBar/prependButton
From Joomla! Documentation
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.
Contents |
Description
Get a value.
Description:JToolBar/prependButton
Syntax
prependButton()
Returns
string
Defined in
libraries/joomla/html/toolbar.php
Importing
jimport( 'joomla.html.toolbar' );
Source Body
public function prependButton() { // Insert button into the front of the toolbar array. $btn = func_get_args(); array_unshift($this->_bar, $btn); return true; }
[Edit See Also] SeeAlso:JToolBar/prependButton
Examples
<CodeExamplesForm />
