function quotes_views_handlers in Quotes 6
Same name and namespace in other branches
- 7 quotes.module \quotes_views_handlers()
Implementation of hook_views_handlers().
File
- ./
quotes.module, line 1889 - 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',
),
),
);
}