API16

JToolBar/render

From Joomla! Documentation

< API16:JToolBar

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Render.



Syntax[edit]

render()


Returns[edit]

string HTML

Defined in[edit]

libraries/joomla/html/toolbar.php

Importing[edit]

jimport( 'joomla.html.toolbar' );

Source Body[edit]

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[edit]

Code Examples[edit]