tripal_analysis.admin.inc 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. /**
  3. * @file
  4. * Contains functions displaying administrative pages and forms
  5. */
  6. /**
  7. *
  8. */
  9. function tripal_analysis_admin_analysis_view() {
  10. $output = '';
  11. // set the breadcrumb
  12. $breadcrumb = array();
  13. $breadcrumb[] = l('Home', '<front>');
  14. $breadcrumb[] = l('Administration', 'admin');
  15. $breadcrumb[] = l('Tripal', 'admin/tripal');
  16. $breadcrumb[] = l('Chado', 'admin/tripal/chado');
  17. $breadcrumb[] = l('Analysis', 'admin/tripal/chado/tripal_analysis');
  18. drupal_set_breadcrumb($breadcrumb);
  19. // Add the view
  20. $view = views_embed_view('tripal_analysis_admin_analyses','default');
  21. if (isset($view)) {
  22. $output .= $view;
  23. }
  24. else {
  25. $output .= '<p>The Analysis module uses primarily views to provide an '
  26. . 'administrative interface. Currently one or more views needed for this '
  27. . 'administrative interface are disabled. <strong>Click each of the following links to '
  28. . 'enable the pertinent views</strong>:</p>';
  29. $output .= '<ul>';
  30. $output .= '<li>'.l('Analysis View', 'admin/tripal/chado/tripal_analysis/views/analyses/enable').'</li>';
  31. $output .= '</ul>';
  32. }
  33. return $output;
  34. }
  35. /**
  36. * Administration page callbacks for the Tripal Analysis module
  37. *
  38. * We have defined a hook_get_settings() function. When a sub-module
  39. * is enabled, we'll look for this function to provide a form for the
  40. * administrative setting.
  41. *
  42. * @return
  43. * A form API array describing an administrative form
  44. *
  45. * @ingroup tripal_analysis
  46. */
  47. function tripal_analysis_admin() {
  48. // Create a new administrative form. We'll add main functions to the form
  49. // first (Sync, Reindex, Clean, Taxonify). Thereafter, any sub-module that
  50. // has a setting will be added.
  51. $form = array();
  52. // Add sub-module settings. Pull all sub-module information from
  53. // {tripal_analysis} table
  54. $sql = "SELECT modulename FROM {tripal_analysis}";
  55. $result = db_query($sql);
  56. $counter = 0; //keep track of the number of sub-modules
  57. while ($data = $result->fetchObject()) {
  58. // Check if the hook_get_settings() function is already defined.
  59. $func = $data->modulename . "_get_settings";
  60. $functions = get_defined_functions();
  61. $settings;
  62. foreach ($functions['user'] as $function) {
  63. if ($function == $func) {
  64. $settings = $func();
  65. }
  66. }
  67. // Add sub-module's specific settings to the administrative view
  68. if ($settings) {
  69. // Define a fieldset for the sub-module
  70. $form["field$counter"] = array(
  71. '#type' => 'fieldset',
  72. '#title' => "$settings->title",
  73. '#collapsible' => TRUE
  74. );
  75. $form["field$counter"]["$settings->title"] = $settings->form;
  76. }
  77. $counter++;
  78. }
  79. if($counter == 0) {
  80. $form['nothing'] = array(
  81. '#markup' => t('There are currently no settings to configure. However, analysis extension modules may add items here when they are installed.')
  82. );
  83. }
  84. return system_settings_form($form);
  85. }
  86. /**
  87. * Validate the administrative form
  88. * @todo Stephen: Why is validate used rather then submit?
  89. *
  90. * @param $form
  91. * The form API array of the form to be validated
  92. * @form_state
  93. * The user submitted values
  94. *
  95. * @ingroup tripal_analysis
  96. */
  97. function tripal_analysis_admin_validate($form, &$form_state) {
  98. global $user; // we need access to the user info
  99. $job_args = array();
  100. // -------------------------------------
  101. // Submit the Reindex Job if selected
  102. if ($form_state['values']['op'] == t('Reindex Features')) {
  103. global $user; // we need access to the user info
  104. $job_args = array();
  105. $analyses = $form_state['values']['re-analyses'];
  106. foreach ($analyses as $analysis_id) {
  107. if ($analysis_id and preg_match("/^\d+$/i", $analysis_id)) {
  108. // get the analysis info
  109. $sql = "SELECT * FROM {analysis} WHERE analysis_id = :analysis_id";
  110. $analysis = chado_query($sql, array(':analysis_id' => $analysis_id))->fetchObject();
  111. $job_args[0] = $analysis_id;
  112. tripal_add_job("Reindex features for analysis: $analysis->name", 'tripal_analysis',
  113. 'tripal_analysis_reindex_features', $job_args, $user->uid);
  114. }
  115. }
  116. }
  117. // -------------------------------------
  118. // Submit the Taxonomy Job if selected
  119. if ($form_state['values']['op'] == t('Set Feature Taxonomy')) {
  120. global $user; // we need access to the user info
  121. $job_args = array();
  122. $analyses = $form_state['values']['tx-analyses'];
  123. foreach ($analyses as $analysis_id) {
  124. if ($analysis_id and preg_match("/^\d+$/i", $analysis_id)) {
  125. // get the analysis info
  126. $sql = "SELECT * FROM {analysis} WHERE analysis_id = :analysis_id";
  127. $analysis = chado_query($sql, array(':analysis_id' => $analysis_id))->fetchObject();
  128. $job_args[0] = $analysis_id;
  129. tripal_add_job("Set taxonomy for features in analysis: $analysis->name", 'tripal_analysis',
  130. 'tripal_analysis_taxonify_features', $job_args, $user->uid);
  131. }
  132. }
  133. }
  134. }