API16:JToolBar/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.
Contents |
Description
Render.
Syntax
render()
Returns
string HTML
Defined in
libraries/joomla/html/toolbar.php
Importing
jimport( 'joomla.html.toolbar' );
Source Body
public function render() { $html = array (); // Start toolbar div. $html[] = '<div class="toolbar-list" id="'.$this->_name.'">'; $html[] = '<ul>'; // Render each button in the toolbar. foreach ($this->_bar as $button) { $html[] = $this->renderButton($button); } // End toolbar div. $html[] = '</ul>'; $html[] = '<div class="clr"></div>'; $html[] = '</div>'; return implode("\n", $html); }
[Edit See Also] SeeAlso:JToolBar/render
Examples
<CodeExamplesForm />
