API16

Difference between revisions of "JButtonConfirm/fetchButton"

From Joomla! Documentation

< API16:JButtonConfirm
(New page: <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{Description:JButtonConfir...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
+
<! removed transcluded page call, red link never existed >
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JButtonConfirm/fetchButton|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
 
 
{{Description:JButtonConfirm/fetchButton}}
 
  
 
===Syntax===
 
===Syntax===
Line 68: Line 63:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JButtonConfirm/fetchButton|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JButtonConfirm/fetchButton}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=fetchButton
 
  category=fetchButton
 
  category=JButtonConfirm
 
  category=JButtonConfirm
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:20, 24 March 2017

The "API16" 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]

public 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);

        $html   = "<a href=\"#\" onclick=\"$doTask\" class=\"toolbar\">\n";
        $html .= "<span class=\"$class\">\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]