Msieprawski\ResourceTable\Presenters\DefaultPresenter::render PHP Method

render() public method

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