You are here

function flashnode_views_handlers in Flash Node 6.3

Register flash node content handler with Views

File

views/flashnode.views.inc, line 56

Code

function flashnode_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'flashnode') . '/views',
    ),
    'handlers' => array(
      'views_handler_field_flashnode_content' => array(
        'parent' => 'views_handler_field',
      ),
      'views_handler_field_flashnode_filepath' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}