You are here

function hosting_views_handlers in Hosting 6.2

Implementation of hook_views_handlers().

File

./hosting.views.inc, line 11
Views integration for the Hosting module.

Code

function hosting_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'hosting'),
    ),
    'handlers' => array(
      // field handlers
      'hosting_views_field_handler_interval' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}