public static function GoogleDrive::getIdFromInput in Video Embed Google Drive 8
File
- src/Plugin/video_embed_field/Provider/GoogleDrive.php, line 20
Class
- GoogleDrive
- A Google Drive provider plugin for video embed field.
Namespace
Drupal\video_embed_google_drive\Plugin\video_embed_field\Provider
Code
public static function getIdFromInput($input) {
preg_match('/^https?:\\/\\/drive.google.com\\/(file\\/d\\/|open\\?id=)(?<id>[0-9a-zA-Z-_]{2,64}).*$/', $input, $matches);
return isset($matches['id']) ? $matches['id'] : FALSE;
}