Msieprawski\ResourceTable\Presenters\DefaultPresenter::render PHP 메소드

render() 공개 메소드

Convert the URL window into Bootstrap HTML.
public render ( ) : string
리턴 string
    public function render()
    {
        if ($this->hasPages()) {
            return sprintf('<ul class="pagination">%s %s %s</ul>', $this->getPreviousButton(), $this->getLinks(), $this->getNextButton());
        }
        return '';
    }