API15

Difference between revisions of "JToolBar/addButtonPath"

From Joomla! Documentation

< API15:JToolBar
(New page: ===Description=== Add a directory where JToolBar should search for button types <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JToolBar/addButtonPat...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JToolBar/addButtonPath|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JToolBar/addButtonPath}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 40: Line 40:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JToolBar/addButtonPath|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JToolBar/addButtonPath}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 55: Line 55:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 13:55, 12 May 2013

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 />