FOF30\View\DataView\Json::_getPrototypeURIForPagination PHP Method

_getPrototypeURIForPagination() protected method

Returns a JUri instance with a prototype URI used as the base for the other URIs created by the JSON renderer
protected _getPrototypeURIForPagination ( ) : JUri
return JUri The prototype JUri instance
    protected function _getPrototypeURIForPagination()
    {
        $protoUri = new \JUri('index.php');
        $protoUri->setQuery($this->input->getData());
        $protoUri->delVar('savestate');
        $protoUri->delVar('base_path');
        return $protoUri;
    }