API15:JButton/render
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Contents |
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 edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
