JButtonConfirm/fetchButton
From Joomla! Documentation
< API15:JButtonConfirm
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 transcluded page call, red link never existed >
Syntax[edit]
fetchButton($type='Confirm', $msg='', $name= '', $text= '', $task= '', $list=true, $hideMenu=false)
Parameter Name | Default Value | Description |
---|---|---|
$type | 'Confirm' | |
$msg | ||
$name | ||
$text | ||
$task | ||
$list | true | |
$hideMenu | false |
Defined in[edit]
libraries/joomla/html/toolbar/button/confirm.php
Importing[edit]
jimport( 'joomla.html.toolbar.button.confirm' );
Source Body[edit]
function fetchButton( $type='Confirm', $msg='', $name = '', $text = '', $task = '', $list = true, $hideMenu = false )
{
$text = JText::_($text);
$msg = JText::_($msg, true);
$class = $this->fetchIconClass($name);
$doTask = $this->_getCommand($msg, $name, $task, $list, $hideMenu);
$html = "<a href=\"#\" onclick=\"$doTask\" class=\"toolbar\">\n";
$html .= "<span class=\"$class\" title=\"$text\">\n";
$html .= "</span>\n";
$html .= "$text\n";
$html .= "</a>\n";
return $html;
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]