Video::isExternal()
\nn\t3::Video()->isExternal($url = NULL);
Checks whether the URL is an external video on YouTube or Vimeo. Returns an array with data for embedding.
\nn\t3::Video()->isExternal( 'https://www.youtube.com/...' );
Copied!
| @return array
Source Code
public function isExternal ( $url = null )
{
return $this->getExternalType( $url );
}
Copied!