You are here

function hosting_package_views_handlers in Hosting 6.2

Implementation of hook_views_handlers().

File

package/views/hosting_package.views.inc, line 10
Hosting package views integration.

Code

function hosting_package_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'hosting_package') . '/views',
    ),
    'handlers' => array(
      // field handlers
      'views_handler_field_hosting_package_status' => array(
        'parent' => 'views_handler_field_hosting_site_status',
      ),
      'views_handler_field_hosting_package_site_count' => array(
        'parent' => 'views_handler_field',
      ),
      // filter handlers
      'views_handler_filter_hosting_package_status' => array(
        'parent' => 'views_handler_filter_in_operator',
      ),
      // sort handlers
      'views_handler_sort_hosting_package_site_count' => array(
        'parent' => 'views_handler_sort',
      ),
    ),
  );
}