tripal_feature.admin.inc 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. <?php
  2. /**
  3. * @file
  4. * Administration of features
  5. */
  6. /**
  7. * Launchpad for feature administration.
  8. *
  9. * @ingroup tripal_feature
  10. */
  11. function tripal_feature_admin_feature_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('Features', 'admin/tripal/chado/tripal_feature');
  20. drupal_set_breadcrumb($breadcrumb);
  21. // Add the view
  22. $view = views_embed_view('tripal_feature_admin_features','default');
  23. if (isset($view)) {
  24. $output .= $view;
  25. }
  26. else {
  27. $output .= '<p>The Feature 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('Features View', 'admin/tripal/chado/tripal_feature/views/features/enable').'</li>';
  33. $output .= '</ul>';
  34. }
  35. return $output;
  36. }
  37. /**
  38. * Feature Settings page
  39. *
  40. * @ingroup tripal_feature
  41. */
  42. function tripal_feature_admin() {
  43. // FEATURE PAGE TITLES
  44. $form['title'] = array(
  45. '#type' => 'fieldset',
  46. '#title' => t('Feature Page Titles'),
  47. '#collapsible' => TRUE,
  48. '#collapsed' => FALSE,
  49. );
  50. $form['title']['desc'] = array(
  51. '#markup' => t(
  52. 'Each synced feature must have a unique page title, however, features
  53. may have the same name if they are of different types or from
  54. different organisms. Therefore, we must be sure that the
  55. page titles can uniquely identify the feature being viewed. Select
  56. an option below that will uniquely identify all features on your site.'),
  57. );
  58. $options = array(
  59. 'feature_unique_name' => 'Feature unique name',
  60. 'feature_name' => 'Feature name',
  61. 'unique_constraint' => 'Feature Name, uniquename, type and species',
  62. );
  63. $form['title']['chado_feature_title'] = array(
  64. '#title' => t('Feature Page Titles'),
  65. '#type' => 'radios',
  66. '#description' => t('Choose a title type from the list above that is
  67. guaranteed to be unique for all features. If in doubt it is safest to
  68. choose the last option as that guarantees uniqueness. Click the
  69. \'Save Configuration\' button at the bottom to save your selection.'),
  70. '#required' => FALSE,
  71. '#options' => $options,
  72. '#default_value' => variable_get('chado_feature_title', 'unique_constraint'),
  73. );
  74. // FEATURE URL PATHS
  75. $form['url'] = array(
  76. '#type' => 'fieldset',
  77. '#title' => t('Feature URL Path'),
  78. '#collapsible' => TRUE,
  79. '#collapsed' => FALSE,
  80. );
  81. $options = array(
  82. 'SID[id]' => '[id]:' . t('The Chado feature_id'),
  83. 'feature' => 'feature:' . t('Chado table name'),
  84. '[genus]' => '[genus]:' . t('Genus to which the feature belongs'),
  85. '[species]' => '[species]:' . t('Species to which the feature belongs'),
  86. '[type]' => '[type]:' . t('The type of feature'),
  87. '[uniquename]' => '[uniquename]:' . t('The feature unique name'),
  88. '[name]' => '[name]:' . t('The feature name'),
  89. 'reset' => t('Reset'),
  90. );
  91. $form['url']['chado_feature_url_string'] = array(
  92. '#title' => 'URL Syntax',
  93. '#type' => 'textfield',
  94. '#description' => t('You may rearrange elements in this text box to
  95. customize the URLs. The available tags include: [id],
  96. [uniquename]. [name], [species], [genus], [type]. You can separate or
  97. include any text between the tags. Click the "Set Feature URLs" button to
  98. reset the URLs for all feature pages. Click the "Save Configuration" button to
  99. simply save this setup. <b>Important</b>: be sure that whatever you choose will always be unique even considering
  100. future data that may be added. If you include the Chado table name, genus, species, type
  101. and uniquename you are guaranteed to have a unique URL. For example feature/[genus]/[species]/[type]/[uniquename]'),
  102. '#size' => 150,
  103. '#default_value' => variable_get('chado_feature_url_string', '/feature/[genus]/[species]/[type]/[uniquename]'),
  104. );
  105. $form['url']['chado_feature_url'] = array(
  106. '#title' => t('URL components'),
  107. '#type' => 'checkboxes',
  108. '#required' => FALSE,
  109. '#options' => $options,
  110. '#description' => t('Click the item above to make it appear in the URL Syntax box'),
  111. '#attributes' => array(
  112. 'onclick' => '
  113. box = $(\'#edit-chado-feature-url-string\');
  114. if (this.value == \'reset\') {
  115. box.val(\'\');
  116. }
  117. else {
  118. box.val(box.val() + "/" + this.value);
  119. }
  120. this.checked = false;
  121. ',
  122. ),
  123. );
  124. $form['url']['button'] = array(
  125. '#type' => 'submit',
  126. '#value' => t('Set Feature URLs'),
  127. );
  128. // FEATURE BROWSER
  129. $form['browser'] = array(
  130. '#type' => 'fieldset',
  131. '#title' => t('Feature Browser'),
  132. '#collapsible' => TRUE,
  133. '#collapsed' => FALSE,
  134. );
  135. $allowedoptions1 = array(
  136. 'show_feature_browser' => "Show the feature browser on the organism page. The browser loads when page loads. This may be slow for large sites.",
  137. 'hide_feature_browser' => "Hide the feature browser on the organism page. Disables the feature browser completely.",
  138. );
  139. // $allowedoptions ['allow_feature_browser'] = "Allow loading of the feature browsing through AJAX. For large sites the initial page load will be quick with the feature browser loading afterwards.";
  140. $form['browser']['browser_desc'] = array(
  141. '#markup' => t('A feature browser can be added to an organism page to allow users to quickly ' .
  142. 'access a feature. This will most likely not be the ideal mechanism for accessing feature ' .
  143. 'information, especially for large sites, but it will alow users exploring the site (such ' .
  144. 'as students) to better understand the data types available on the site.'),
  145. );
  146. $form['browser']['feature_types'] = array(
  147. '#title' => t('Feature Types'),
  148. '#type' => 'textarea',
  149. '#description' => t("Enter the Sequence Ontology (SO) terms for the feature types that " .
  150. "will be shown in the feature browser."),
  151. '#default_value' => variable_get('chado_browser_feature_types', 'gene mRNA'),
  152. );
  153. $form['browser']['browse_features'] = array(
  154. '#title' => 'Feature Browser on Organism Page',
  155. '#type' => 'radios',
  156. '#options' => $allowedoptions1,
  157. '#default_value' => variable_get('tripal_feature_browse_setting', 'show_feature_browser'),
  158. );
  159. $form['browser']['browse_features_library'] = array(
  160. '#title' => 'Feature Browser on Library Page',
  161. '#type' => 'radios',
  162. '#options' => array(
  163. 'show_feature_browser' => "Show the feature browse on the library page. The browser loads when page loads. This may be slow for large sites.",
  164. 'hide_feature_browser' => "Hide the feature browser on the library page. Disables the feature browser completely.",
  165. ),
  166. '#default_value' => variable_get('tripal_library_feature_browse_setting', 'show_feature_browser'),
  167. );
  168. $form['browser']['browse_features_analysis'] = array(
  169. '#title' => 'Feature Browser on Analysis Page',
  170. '#type' => 'radios',
  171. '#options' => array(
  172. 'show_feature_browser' => "Show the feature browse on the analysis page. The browser loads when page loads. This may be slow for large sites.",
  173. 'hide_feature_browser' => "Hide the feature browser on the analysis page. Disables the feature browser completely.",
  174. ),
  175. '#default_value' => variable_get('tripal_analysis_feature_browse_setting', 'show_feature_browser'),
  176. );
  177. $form['browser']['set_browse_button'] = array(
  178. '#type' => 'submit',
  179. '#value' => t('Set Browser'),
  180. '#weight' => 2,
  181. );
  182. // FEATURE SUMMARY REPORT
  183. $form['summary'] = array(
  184. '#type' => 'fieldset',
  185. '#title' => t('Feature Summary Report'),
  186. '#collapsible' => TRUE,
  187. '#collapsed' => FALSE,
  188. );
  189. $allowedoptions2 ['show_feature_summary'] = "Show the feature summary on the organism page. The summary loads when page loads.";
  190. $allowedoptions2 ['hide_feature_summary'] = "Hide the feature summary on the organism page. Disables the feature summary.";
  191. $form['summary']['feature_summary'] = array(
  192. '#title' => 'Feature Summary on Organism Page',
  193. '#description' => 'A feature summary can be added to an organism page to allow users to see the ' .
  194. 'type and quantity of features available for the organism.',
  195. '#type' => 'radios',
  196. '#options' => $allowedoptions2,
  197. '#default_value' => variable_get('tripal_feature_summary_setting', 'show_feature_summary'),
  198. );
  199. $form['summary']['feature_mapping'] = array(
  200. '#title' => 'Map feature types',
  201. '#description' => t('You may specify which Sequence Ontology (SO) terms to show in the ' .
  202. 'feature summary report by listing them in the following text area. Enter one per line. ' .
  203. 'If left blank, all SO terms for all features will be shown in the report. Only those terms ' .
  204. 'listed below will be shown in the report. Terms will appear in the report in the same order listed. To rename a ' .
  205. 'SO term to be more human readable form, use an \'=\' sign after the SO term (e.g. \'polypeptide = Protein\')'),
  206. '#type' => 'textarea',
  207. '#rows' => 15,
  208. '#default_value' => variable_get('tripal_feature_summary_report_mapping', ''),
  209. );
  210. $form['summary']['set_summary_button'] = array(
  211. '#type' => 'submit',
  212. '#value' => t('Set Summary'),
  213. '#weight' => 2,
  214. );
  215. return system_settings_form($form);
  216. }
  217. /**
  218. * Validate the feature settings forms
  219. *
  220. * @ingroup tripal_feature
  221. */
  222. function tripal_feature_admin_validate($form, &$form_state) {
  223. global $user; // we need access to the user info
  224. $job_args = array();
  225. variable_set('chado_browser_feature_types', $form_state['values']['feature_types']);
  226. switch ($form_state['values']['op']) {
  227. case t('Set Browser') :
  228. variable_set('tripal_feature_browse_setting', $form_state['values']['browse_features']);
  229. variable_set('tripal_library_feature_browse_setting', $form_state['values']['browse_features_library']);
  230. variable_set('tripal_analysis_feature_browse_setting', $form_state['values']['browse_features_analysis']);
  231. break;
  232. case t('Set Summary') :
  233. variable_set('tripal_feature_summary_setting', $form_state['values']['feature_summary']);
  234. variable_set('tripal_feature_summary_report_mapping', $form_state['values']['feature_mapping']);
  235. break;
  236. case t('Set Feature URLs') :
  237. variable_set('chado_feature_url', $form_state['values']['feature_url']);
  238. tripal_add_job('Set Feature URLs', 'tripal_feature',
  239. 'tripal_feature_set_urls', $job_args, $user->uid);
  240. break;
  241. }
  242. }