API15

JButton/render: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 49: Line 49:


===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=*

Latest revision as of 00: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

function render( &$definition )
{
        /*
         * Initialize 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   .= "<td class=\"button\" $id>\n";
        $html   .= $action;
        $html   .= "</td>\n";

        return $html;
}


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

Examples

Code Examples