API16:JToolBar/addButtonPath
From Joomla! Documentation
Description
Add a directory where JToolBar should search for button types.
Syntax
addButtonPath($path)
| Parameter Name | Default Value | Description |
|---|---|---|
| $path | directory or directories to search. |
Defined in
libraries/joomla/html/toolbar.php
Importing
jimport( 'joomla.html.toolbar' );
Source Body
public function addButtonPath($path)
{
if (is_array($path)) {
$this->_buttonPath = array_merge($this->_buttonPath, $path);
} else {
array_push($this->_buttonPath, $path);
}
}
Examples
Code Examples