function tripal_feature_views_handlers
2.x tripal_feature.views.inc | tripal_feature_views_handlers() |
3.x tripal_feature.views.inc | tripal_feature_views_handlers() |
1.x tripal_feature.views.inc | tripal_feature_views_handlers() |
Implements hook_views_handlers()
Purpose: Register all custom handlers with views where a handler describes either "the type of field", "how a field should be filtered", "how a field should be sorted"
@return: An array of handler definitions
Related topics
File
- tripal_feature/
tripal_feature.views.inc, line 29 - This file contains the basic functions for views integration of chado/tripal organism tables. Supplementary functions can be found in ./views/
Code
function tripal_feature_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'tripal_feature') . '/views_handlers',
),
'handlers' => array(
'views_handler_field_residues' => array(
'parent' => 'views_handler_field',
),
),
);
}