You are here

function emvideo_google_request in Embedded Media Field 6

Same name and namespace in other branches
  1. 6.3 contrib/emvideo/providers/google.inc \emvideo_google_request()
1 call to emvideo_google_request()
emvideo_google_data in contrib/emvideo/providers/google.inc
hook emfield_PROVIDER_data

File

contrib/emvideo/providers/google.inc, line 50
This include processes Google.com media files for use by emfield.module

Code

function emvideo_google_request($embed, $cacheable = TRUE) {
  $args = array(
    'docid' => $embed,
  );
  return module_invoke('emfield', 'request_xml', 'google', EMVIDEO_GOOGLE_XML, $args, $cacheable);
}