think\paginator\driver\Bootstrap::getNextButton PHP Метод

getNextButton() защищенный Метод

下一页按钮
protected getNextButton ( string $text = '»' ) : string
$text string
Результат string
    protected function getNextButton($text = '»')
    {
        if (!$this->hasMore) {
            return $this->getDisabledTextWrapper($text);
        }
        $url = $this->url($this->currentPage() + 1);
        return $this->getPageLinkWrapper($url, $text);
    }