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

getURL() public method

Return the current value for an URL
public getURL ( ) : null | string
return null | string
    public function getURL()
    {
        // not set so return null
        if (!isset($this->data['url'])) {
            return;
        }
        // return value
        return urldecode($this->data['url']);
    }