API16

JPagination/getListFooter

From Joomla! Documentation

< API16:JPagination

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]

Return the pagination footer.



Syntax[edit]

getListFooter()


Returns[edit]

string Pagination footer.

Defined in[edit]

libraries/joomla/html/pagination.php

Importing[edit]

jimport( 'joomla.html.pagination' );

Source Body[edit]

public function getListFooter()
{
        $app = JFactory::getApplication();

        $list = array();
        $list['prefix']                 = $this->prefix;
        $list['limit']                  = $this->limit;
        $list['limitstart']             = $this->limitstart;
        $list['total']                  = $this->total;
        $list['limitfield']             = $this->getLimitBox();
        $list['pagescounter']   = $this->getPagesCounter();
        $list['pageslinks']             = $this->getPagesLinks();

        $chromePath     = JPATH_THEMES.DS.$app->getTemplate().DS.'html'.DS.'pagination.php';
        if (file_exists($chromePath))
        {
                require_once $chromePath;
                if (function_exists('pagination_list_footer')) {
                        return pagination_list_footer($list);
                }
        }
        return $this->_list_footer($list);
}



Examples[edit]

Code Examples[edit]