You are here

function smart_ip_views_bridge_views_handlers in Smart IP 6

Same name and namespace in other branches
  1. 6.2 modules/smart_ip_views_bridge/views/smart_ip_views_bridge.views.inc \smart_ip_views_bridge_views_handlers()

Implements hook_views_handlers().

Return value

array

File

modules/smart_ip_views_bridge/views/smart_ip_views_bridge.views.inc, line 14
Views hooks implemention.

Code

function smart_ip_views_bridge_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'smart_ip_views_bridge') . '/views',
    ),
    'handlers' => array(
      'smart_ip_views_bridge_handler_field_coordinates' => array(
        'parent' => 'views_handler_field',
      ),
      'smart_ip_views_bridge_handler_field_latitude' => array(
        'parent' => 'smart_ip_views_bridge_handler_field_coordinates',
      ),
      'smart_ip_views_bridge_handler_field_longitude' => array(
        'parent' => 'smart_ip_views_bridge_handler_field_coordinates',
      ),
      'smart_ip_views_bridge_handler_field_country' => array(
        'parent' => 'views_handler_field',
      ),
      'smart_ip_views_bridge_handler_field_region' => array(
        'parent' => 'views_handler_field',
      ),
      'smart_ip_views_bridge_handler_field_city' => array(
        'parent' => 'views_handler_field',
      ),
      'smart_ip_views_bridge_handler_field_zip' => array(
        'parent' => 'views_handler_field',
      ),
      'smart_ip_views_bridge_openlayers_proximity_handler_field' => array(
        'parent' => 'openlayers_proximity_handler_field',
      ),
      'smart_ip_views_bridge_openlayers_proximity_handler_sort' => array(
        'parent' => 'openlayers_proximity_handler_sort',
      ),
      'smart_ip_views_bridge_openlayers_proximity_handler_filter_square' => array(
        'parent' => 'openlayers_proximity_handler_filter_square',
      ),
      'smart_ip_views_bridge_openlayers_proximity_handler_filter_circle' => array(
        'parent' => 'openlayers_proximity_handler_filter_circle',
      ),
    ),
  );
}