function tripal_featuremap_search_biological_data_views
2.x tripal_featuremap.module | tripal_featuremap_search_biological_data_views() |
3.x tripal_featuremap.module | tripal_featuremap_search_biological_data_views() |
Implements hook_search_biological_data_views().
Adds the described views to the "Search Data" Page created by Tripal Views
File
- tripal_featuremap/
tripal_featuremap.module, line 160 - Integrates the Chado Map module with Drupal Nodes & Views
Code
function tripal_featuremap_search_biological_data_views() {
return array(
'tripal_featuremap_user_featuremaps' => array(
'machine_name' => 'tripal_featuremap_user_featuremaps',
'human_name' => 'Maps',
'description' => 'A map of features from the chado database (e.g. genetic map)',
'link' => 'chado/featuremap'
),
);
}