Backend\Core\Engine\Meta::getURLOverwrite PHP Method

getURLOverwrite() public method

Should the URL overwrite the default
public getURLOverwrite ( ) : null | boolean
return null | boolean
    public function getURLOverwrite()
    {
        // not set so return null
        if (!isset($this->data['url_overwrite'])) {
            return;
        }
        // return value
        return $this->data['url_overwrite'] == 'Y';
    }