Devise\Media\MediaPaths::isUrlPath PHP Method

isUrlPath() public method

Returns true or false depending on if this is an image url or not
public isUrlPath ( $url ) : boolean
$url
return boolean
    public function isUrlPath($url)
    {
        return strpos($url, 'https://') === 0 || strpos($url, 'http://') === 0 || strpos($url, 'ftp://') === 0;
    }