API16

API16:JToolBar/render

From Joomla! Documentation

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);
}



Examples

Code Examples