Backend\Core\Engine\DataGrid::setURL PHP Method

setURL() public method

Sets an URL, optionally only appending the provided piece
public setURL ( string $url, boolean $append = false )
$url string The URL to set.
$append boolean Should it be appended to the existing URL.
    public function setURL($url, $append = false)
    {
        if ($append) {
            parent::setURL(parent::getURL() . $url);
        } else {
            parent::setURL($url);
        }
    }