Back to Pagination class

Method _list_render

protected string
_list_render
(mixed $list)
Create the html for a list footer
Parameters
  • array $list Pagination list data structure.
Returns
  • string HTML for a list start, previous, next,end
Since
  • 1.5
Class: Pagination
Project: Joomla

Method _list_render - Source code

/**
 * Create the html for a list footer
 *
 * @param   array  $list  Pagination list data structure.
 *
 * @return  string  HTML for a list start, previous, next,end
 *
 * @since   1.5
 */
protected function _list_render($list)
{
    return LayoutHelper::render('joomla.pagination.list', array('list' => $list));
}