123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- function tripal_example_admin_examples_listing() {
- $output = '';
-
- $breadcrumb = array();
- $breadcrumb[] = l('Home', '<front>');
- $breadcrumb[] = l('Administration', 'admin');
- $breadcrumb[] = l('Tripal', 'admin/tripal');
- $breadcrumb[] = l('Chado', 'admin/tripal/chado');
- $breadcrumb[] = l('Examples', 'admin/tripal/chado/tripal_example');
- drupal_set_breadcrumb($breadcrumb);
-
-
-
-
- $output = 'Typically a search view goes here';
- return $output;
- }
- function tripal_example_admin() {
- $form = array();
- $form['nothing'] = array(
- '#markup' => t('There are currently no settings to configure.')
- );
-
-
-
-
-
- $details = array(
-
- 'module' => 'tripal_example',
- 'content_type' => 'chado_example',
-
-
-
- 'options' => array(
- '[example.name]' => 'Germplasm Name Only',
- '[example.uniquename]' => 'Germplasm Unique Name Only',
-
-
-
-
- '[example.example_id]' => 'Unique Constraint: The Chado ID for Examples'
- ),
-
- 'unique_option' => '[example.example_id]'
- );
-
-
- chado_add_admin_form_set_title($form, $form_state, $details);
- return system_settings_form($form);
- }
- function tripal_example_admin_validate($form, &$form_state) {
- }
|