API16

API16:JButton/render

From Joomla! Documentation

<! 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