Craft\AmForms_FormModel::getRedirectUrl PHP Method

getRedirectUrl() public method

Return the form's redirect URL.
public getRedirectUrl ( ) : null | string
return null | string
    public function getRedirectUrl()
    {
        $entry = $this->getRedirectEntry();
        if ($entry) {
            return $entry->url;
        }
        return null;
    }