You are here

function hosting_platform_views_handlers in Hosting 6.2

Implementation of hook_views_handlers().

File

platform/hosting_platform.views.inc, line 10
Hosting platform views integration.

Code

function hosting_platform_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'hosting_platform'),
    ),
    'handlers' => array(
      // field handlers
      'views_handler_field_hosting_platform_release' => array(
        'parent' => 'views_handler_field',
      ),
      'views_handler_field_hosting_platform_status' => array(
        'parent' => 'views_handler_field_hosting_site_status',
      ),
      'views_handler_field_hosting_platform_sites' => array(
        'parent' => 'views_handler_field',
      ),
    ),
  );
}