API15

JToolBar/addButtonPath

From Joomla! Documentation

< API15:JToolBar
Revision as of 13:55, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API15" 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.

Description[edit]

Add a directory where JToolBar should search for button types

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

addButtonPath($path)
Parameter Name Default Value Description
$path directory or directories to search.

Defined in[edit]

libraries/joomla/html/toolbar.php

Importing[edit]

jimport( 'joomla.html.toolbar' );

Source Body[edit]

function addButtonPath($path)
{
        if (is_array($path)) {
                $this->_buttonPath = array_merge($this->_buttonPath, $path);
        } else {
                array_push($this->_buttonPath, $path);
        }
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />