You are here

function video_views_handlers in Video 7.2

Same name and namespace in other branches
  1. 6.5 views/video.views.inc \video_views_handlers()
  2. 6.2 video.module \video_views_handlers()
  3. 6.4 views/video.views.inc \video_views_handlers()
  4. 7 views/video.views.inc \video_views_handlers()

Implements hook_views_handlers().

File

./video.module, line 356
All module hooks implementation can be found in this file.

Code

function video_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'video') . '/views',
    ),
    'handlers' => array(
      'video_handler_field_video_duration' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}