You are here

function quotes_views_handlers in Quotes 7

Same name and namespace in other branches
  1. 6 quotes.module \quotes_views_handlers()

Implements hook_views_handlers().

File

./quotes.module, line 2479
The quotes module allows users to maintain a list of quotes that can be displayed in any number of administrator-defined quote blocks.

Code

function quotes_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'quotes'),
    ),
    'handlers' => array(
      'views_handler_field_quotes' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}