PMA\libraries\DisplayResults::_getMoveBackwardButtonsForTableNavigation PHP Method

_getMoveBackwardButtonsForTableNavigation() private method

Prepare move backward buttons - previous and first
See also: _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
return 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