tripal_organism.admin.inc 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. /**
  3. * @file
  4. * Administration of organisms
  5. */
  6. /**
  7. * Admin launchpad
  8. *
  9. * @ingroup tripal_organism
  10. */
  11. function tripal_organism_admin_organism_view() {
  12. $output = '';
  13. // set the breadcrumb
  14. $breadcrumb = array();
  15. $breadcrumb[] = l('Home', '<front>');
  16. $breadcrumb[] = l('Administration', 'admin');
  17. $breadcrumb[] = l('Tripal', 'admin/tripal');
  18. $breadcrumb[] = l('Chado', 'admin/tripal/chado');
  19. $breadcrumb[] = l('Organisms', 'admin/tripal/chado/tripal_organism');
  20. drupal_set_breadcrumb($breadcrumb);
  21. // Add the view
  22. $view = views_embed_view('tripal_organism_admin_organisms','default');
  23. if (isset($view)) {
  24. $output .= $view;
  25. }
  26. else {
  27. $output .= '<p>The Organism module uses primarily views to provide an '
  28. . 'administrative interface. Currently one or more views needed for this '
  29. . 'administrative interface are disabled. <strong>Click each of the following links to '
  30. . 'enable the pertinent views</strong>:</p>';
  31. $output .= '<ul>';
  32. $output .= '<li>'.l('Organisms View', 'admin/tripal/chado/tripal_organism/views/organisms/enable').'</li>';
  33. $output .= '</ul>';
  34. }
  35. return $output;
  36. }
  37. /**
  38. * Administrative settings for chado_orgnism
  39. *
  40. * @ingroup tripal_organism
  41. */
  42. function tripal_organism_admin() {
  43. $form = array();
  44. $form['nothing'] = array(
  45. '#markup' => t('There are currently no settings to configure.')
  46. );
  47. return system_settings_form($form);
  48. }
  49. /**
  50. * Validate the organism settings form
  51. *
  52. * @ingroup tripal_organism
  53. */
  54. function tripal_organism_admin_validate($form, &$form_state) {
  55. }