You are here

function cck_select_other_views_handlers in CCK Select Other 6

Implementation of hook_views_handlers().

File

views/cck_select_other.views.inc, line 29

Code

function cck_select_other_views_handlers() {
  return array(
    'info' => array(
      'path' => drupal_get_path('module', 'cck_select_other') . '/views',
    ),
    'handlers' => array(
      'cck_select_other_handler_field' => array(
        'parent' => 'content_handler_field',
      ),
      'cck_select_other_handler_filter' => array(
        'parent' => 'content_handler_filter_many_to_one',
      ),
    ),
  );
}