API15

Difference between revisions of "JButtonStandard/fetchButton"

From Joomla! Documentation

< API15:JButtonStandard
(New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JButtonStand...)
 
m (removing red link to edit, no existant pages)
Line 1: Line 1:
 
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JButtonStandard/fetchButton|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JButtonStandard/fetchButton}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 64: Line 63:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JButtonStandard/fetchButton|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JButtonStandard/fetchButton}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 79: Line 78:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 08:47, 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.

[<! removed edit link to red link >]

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

Syntax[edit]

fetchButton($type='Standard', $name= '', $text= '', $task= '', $list=true, $hideMenu=false)
Parameter Name Default Value Description
$type 'Standard'
$name
$text
$task
$list true
$hideMenu false

Defined in[edit]

libraries/joomla/html/toolbar/button/standard.php

Importing[edit]

jimport( 'joomla.html.toolbar.button.standard' );

Source Body[edit]

function fetchButton( $type='Standard', $name = '', $text = '', $task = '', $list = true, $hideMenu = false )
{
        $i18n_text      = JText::_($text);
        $class  = $this->fetchIconClass($name);
        $doTask = $this->_getCommand($text, $task, $list, $hideMenu);

        $html   = "<a href=\"#\" onclick=\"$doTask\" class=\"toolbar\">\n";
        $html .= "<span class=\"$class\" title=\"$i18n_text\">\n";
        $html .= "</span>\n";
        $html   .= "$i18n_text\n";
        $html   .= "</a>\n";

        return $html;
}

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

Examples[edit]

<CodeExamplesForm />