API15

API15:JButtonStandard/fetchButton

From Joomla! Documentation

Revision as of 00:21, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Syntax

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

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

Importing

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

Source Body

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 transcluded page call, red link never existed >

Examples

Code Examples