API16

JButton/render: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
No edit summary
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:JButton/render|Edit Descripton]]<nowiki>]</nowiki>
</span>
 
{{Description:JButton/render}}


===Syntax===
===Syntax===
Line 50: Line 45:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JButton/render|Edit See Also]]<nowiki>]</nowiki>
<! removed transcluded page call, red link never existed >
</span>
{{SeeAlso:JButton/render}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=render
  category=render
  category=JButton
  category=JButton
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API16]]

Latest revision as of 01:20, 25 March 2017

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

Syntax

render(&$definition)
Parameter Name Default Value Description
&$definition

Defined in

libraries/joomla/html/toolbar/button.php

Importing

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

Source Body

public function render(&$definition)
{
        /*
         * Initialise some variables
         */
        $html   = null;
        $id             = call_user_func_array(array(&$this, 'fetchId'), $definition);
        $action = call_user_func_array(array(&$this, 'fetchButton'), $definition);

        // Build id attribute
        if ($id) {
                $id = "id=\"$id\"";
        }

        // Build the HTML Button
        $html   .= "<li class=\"button\" $id>\n";
        $html   .= $action;
        $html   .= "</li>\n";

        return $html;
}


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

Examples

Code Examples