public static function Dailymotion::getIdFromInput in Video Embed Dailymotion 8
File
- src/
Plugin/ video_embed_field/ Provider/ Dailymotion.php, line 47 - Contains \Drupal\video_embed_dailymotion\Plugin\video_embed_field\Provider\Dailymotion.
Class
- Dailymotion
- Plugin annotation @VideoEmbedProvider( id = "dailymotion", title = @Translation("Dailymotion") )
Namespace
Drupal\video_embed_dailymotion\Plugin\video_embed_field\ProviderCode
public static function getIdFromInput($input) {
preg_match('/^https?:\\/\\/(www\\.)?dailymotion.com\\/video\\/(?<id>[a-z0-9]{6,7})(_([0-9a-zA-Z\\-_])*)?$/', $input, $matches);
return isset($matches['id']) ? $matches['id'] : FALSE;
}