You are here

function mediafront_views_handlers in MediaFront 6

Same name and namespace in other branches
  1. 6.2 views/mediafront.views.inc \mediafront_views_handlers()

Implementation of hook_views_handlers

File

views/mediafront.views.inc, line 39
mediafront.views.inc Built in plugins for Views output handling.

Code

function mediafront_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'mediafront') . '/views',
    ),
    'handlers' => array(
      'mediafront_handler_field_player' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}