You are here

function video_embed_field_views_api in Video Embed Field 7.2

Implements hook_views_api().

File

./video_embed_field.module, line 164
Provides a simple field for easily embedding videos from youtube or vimeo

Code

function video_embed_field_views_api() {
  return array(
    'api' => 3,
    'path' => drupal_get_path('module', 'video_embed_field') . '/views',
  );
}