function tripal_phylogeny_search_biological_data_views

2.x tripal_phylogeny.module tripal_phylogeny_search_biological_data_views()
3.x tripal_phylogeny.module tripal_phylogeny_search_biological_data_views()

Implements hook_search_biological_data_views().

Adds the described views to the "Search Data" Page created by Tripal Views

File

legacy/tripal_phylogeny/tripal_phylogeny.module, line 133
Integrates the Chado Phylotree module with Drupal Nodes & Views

Code

function tripal_phylogeny_search_biological_data_views() {
  return array(
    'tripal_phylogeny_user_phylotree' => array(
      'machine_name' => 'tripal_phylogeny_user_phylotree',
      'human_name' => 'Phylogenetic Trees',
      'description' => 'Gene trees, species trees, etc.',
      'link' => 'chado/phylotree'
    ),
  );
}