123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- function tripal_phylogeny_admin() {
- $form = array();
-
-
-
-
- $details = array(
- 'module' => 'tripal_phylogeny',
- 'content_type' => 'chado_phylotree',
-
-
- 'options' => array(
- '[phylotree.name]' => 'Tree Name Only',
-
- '[phylotree.phylotree_id]' => 'The Chado ID for Phylotrees'
- ),
-
- 'unique_option' => '[phylotree.phylotree_id]'
- );
-
-
- chado_add_admin_form_set_title($form, $form_state, $details);
-
-
- $details = array(
- 'module' => 'tripal_phylogeny',
- 'content_type' => 'chado_phylotree',
-
-
- 'options' => array(
- '/tree/[phylotree.name]' => 'Tree Name Only',
-
- '/tree/[phylotree.phylotree_id]' => 'The Chado ID for Phylotrees',
- )
- );
-
-
- chado_add_admin_form_set_url($form, $form_state, $details);
- return system_settings_form($form);
- }
|