tripal_organism.admin.inc

  1. 2.x tripal_organism/includes/tripal_organism.admin.inc
  2. 3.x legacy/tripal_organism/includes/tripal_organism.admin.inc
  3. 1.x tripal_organism/includes/tripal_organism.admin.inc

Administration of organisms

File

tripal_organism/includes/tripal_organism.admin.inc
View source
  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. // If your module is using the Chado Node: Title & Path API to allow custom titles
  45. // for your node type then you need to add the configuration form for this functionality.
  46. $details = array(
  47. 'module' => 'tripal_organism', // the name of the MODULE implementing the content type
  48. 'content_type' => 'chado_organism', // the name of the content type
  49. // An array of options to use under "Page Titles"
  50. // the key should be the token and the value should be the human-readable option
  51. 'options' => array(
  52. '[organism.name]' => 'Organism Name Only',
  53. // there should always be one options matching the unique constraint.
  54. '[organism.genus] [organism.species]' => 'Unique Contraint: The scientific name'
  55. ),
  56. // the token indicating the unique constraint in the options array
  57. 'unique_option' => '[organism.genus] [organism.species]'
  58. );
  59. // This call adds the configuration form to your current form
  60. // This sub-form handles it's own validation & submit
  61. chado_add_admin_form_set_title($form, $form_state, $details);
  62. // URL ALIAS
  63. $details = array(
  64. 'module' => 'tripal_organism',
  65. 'content_type' => 'chado_organism',
  66. 'options' => array(
  67. '/organism/[organism.organism_id]' => 'Organism ID',
  68. '/organism/[organism.abbreviation]' => 'The abbreviation for the organism',
  69. '/organism/[organism.common_name]' => 'The common name of the organism',
  70. '/organism/[organism.genus]/[organism.species]' => 'Unique Contraint: the scientific name.'
  71. ),
  72. );
  73. // This call adds the configuration form to your current form
  74. // This sub-form handles it's own validation & submit
  75. chado_add_admin_form_set_url($form, $form_state, $details);
  76. return system_settings_form($form);
  77. }
  78. /**
  79. * Validate the organism settings form
  80. *
  81. * @ingroup tripal_organism
  82. */
  83. function tripal_organism_admin_validate($form, &$form_state) {
  84. }