PMA\libraries\DisplayResults::_getMoveBackwardButtonsForTableNavigation PHP Метод

_getMoveBackwardButtonsForTableNavigation() приватный Метод

Prepare move backward buttons - previous and first
См. также: _getTableNavigation()
private _getMoveBackwardButtonsForTableNavigation ( string $html_sql_query, integer $pos_prev ) : string
$html_sql_query string the sql encoded by html special characters
$pos_prev integer the offset for the "previous" page
Результат string html content
    private function _getMoveBackwardButtonsForTableNavigation($html_sql_query, $pos_prev)
    {
        return $this->_getTableNavigationButton('<<', _pgettext('First page', 'Begin'), 0, $html_sql_query, true) . $this->_getTableNavigationButton('<', _pgettext('Previous page', 'Previous'), $pos_prev, $html_sql_query, true);
    }
DisplayResults