tripal_views_setup.admin.inc 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <?php
  2. /**
  3. *
  4. * @ingroup tripal_view_search
  5. */
  6. function tripal_views_setup_admin_form(){
  7. $form = array();
  8. $form['#theme'] = 'tripal';
  9. $query_results = db_query('SELECT * FROM public.tripal_views_setup;');
  10. $header = array('Setup ID', 'Name', 'Materialized View ID', 'Base Table Name', 'Description');
  11. $rows = array();
  12. $results = array();
  13. while($result = db_fetch_object($query_results)){
  14. $rows[] = array($result->setup_id, $result->name, $result->mview_id, $result->base_table_name, $result->description,);
  15. $results[] = $result;
  16. }
  17. $options = array();
  18. foreach ($results as $key => $value) {
  19. if(!empty($value))
  20. $options[] = $value->setup_id;// . ' | ' . $value->name . ' | ' . $value->mview_id . ' | ' . $value->base_table_name;
  21. }
  22. $form['existing_rows'] = array(
  23. '#type' => 'select',
  24. '#options' => $options,
  25. '#description' => '<strong>Select a View Setup to delete from the database.</strong>',
  26. '#prefix' => theme('table', $header, $rows),
  27. );
  28. $form['submit'] = array(
  29. '#type' => 'submit',
  30. '#value' => t('Remove'),
  31. );
  32. $form['cancel'] = array(
  33. '#type' => 'markup',
  34. '#value' => l(t('Cancel '), 'admin/tripal/'),
  35. );
  36. $form['new'] = array(
  37. '#type' => 'markup',
  38. '#value' => l(t(' New'), 'admin/tripal/tripal_views_setup_new'),
  39. );
  40. return $form;
  41. }
  42. /**
  43. *
  44. * @ingroup tripal_view_search
  45. */
  46. function tripal_views_setup_admin_form_submit($form, &$form_state){
  47. $value = $form['existing_rows']['#options'][$form_state['values']['existing_rows']];
  48. db_query("DELETE FROM public.tripal_views_setup WHERE setup_id = $value;");
  49. db_query("DELETE FROM public.tripal_views_handlers WHERE setup_id = $value;");
  50. db_query("DELETE FROM public.tripal_mviews_join WHERE setup_id = $value;");
  51. }
  52. /**
  53. *
  54. * @ingroup tripal_view_search
  55. */
  56. function tripal_views_setup_new_search_form($form_state){
  57. $form = array();
  58. $form['#cache'] = TRUE;
  59. $form['row_name'] = array(
  60. '#title' => t('Name'),
  61. '#type' => 'textfield',
  62. '#size' => 60,
  63. '#maxlength' => 128,
  64. '#description' => 'Name of the Views Setup',
  65. '#required' => TRUE,
  66. );
  67. $form['row_description'] = array(
  68. '#title' => t('Description'),
  69. '#type' => 'textfield',
  70. '#size' => 60,
  71. '#maxlength' => 255,
  72. '#description' => 'Briefly describe in which view this will be used',
  73. '#required' => TRUE,
  74. );
  75. $mview_query = db_query("SELECT mview_id,name FROM {tripal_mviews} ORDER BY name;");
  76. $mview_options = array();
  77. while ($mview_option = db_fetch_array($mview_query)){
  78. $mview_options[$mview_option['mview_id']] = $mview_option['name'];
  79. }
  80. $form['mview_id'] = array(
  81. '#title' => t('Materialized View'),
  82. '#type' => 'select',
  83. '#options' => $mview_options,
  84. '#description' => 'Which materialized view to use.',
  85. '#required' => TRUE,
  86. '#ahah' => array(
  87. 'path' => 'admin/tripal/tripal_views_setup/ajax/mview_cols',
  88. 'wrapper' => 'table-rows-div',
  89. 'effect' => 'fade',
  90. 'event' => 'change',
  91. 'method' => 'replace',
  92. ),
  93. );
  94. // ignore this for now... we'll come back to it later -- spf
  95. // $form['row_base_table_name'] = array(
  96. // '#title' => t('Base Table Name'),
  97. // '#type' => 'select',
  98. // // '#options' => array('stub'),
  99. // '#options' => tripal_core_get_chado_tables(),
  100. // '#description' => 'Select which chado table to use for this view.',
  101. // '#required' => TRUE,
  102. // );
  103. $form['table-rows-div'] = array(
  104. '#type' => 'markup',
  105. '#value' => '<div id="table-rows-div">',
  106. );
  107. return $form;
  108. }
  109. /**
  110. *
  111. * @ingroup tripal_view_search
  112. */
  113. function tripal_view_search_ajax_mview_cols(){
  114. dpm($_POST, 'post');
  115. $mview_id = $_POST['mview_id'];
  116. $form = drupal_get_form('tripal_views_setup_fields_form',$mview_id);
  117. drupal_json(array('status' => TRUE, 'data' => $form));
  118. }
  119. /**
  120. *
  121. * @ingroup tripal_view_search
  122. */
  123. function tripal_views_setup_fields_form(&$form_state=NULL, $mview_id = NULL){
  124. if(!$mview_id){
  125. return;
  126. }
  127. // get the columns in this materialized view. They are separated by commas
  128. // where the first word is the column name and the rest is the type
  129. $sql = "SELECT mv_specs FROM {tripal_mviews} WHERE mview_id = $mview_id";
  130. $mview = db_fetch_object(db_query($sql));
  131. $columns = explode(",",$mview->mv_specs);
  132. $i=1;
  133. $chado_tables = tripal_core_get_chado_tables();
  134. $handlers = array();
  135. $form["fields_headers"] = array(
  136. '#type' => 'markup',
  137. '#value' => "<div class=\"field-headers\">".
  138. "<div class=\"column-id\">Field Name and Type</div>".
  139. "<div class=\"fields-column-join\">Join Table</div>".
  140. "<div class=\"fields-column-join-column\">Join Column</div>".
  141. "<div class=\"fields-column-handler\">Handler</div></div>",
  142. );
  143. foreach ($columns as $column){
  144. $column = trim($column); // trim trailing and leading spaces
  145. preg_match("/^(.*?)\ (.*?)$/",$column,$matches);
  146. $column_name = $matches[1];
  147. $column_type = $matches[2];
  148. // first print the field name
  149. $form["fields_start_$i"] = array(
  150. '#type' => 'markup',
  151. '#value' => "<div class=\"fields-new-row\">",
  152. );
  153. $form["fields_column_name_$i"] = array(
  154. '#type' => 'markup',
  155. '#attributes' => array('class' => 'fields-column-name'),
  156. '#value' => "<div class=\"column-id\"><span class=\"column-name\">$column_name</span>".
  157. "<br><span class=\"column-type\">$column_type</span></div>",
  158. );
  159. // second print the table join drop down
  160. $chado_tables = array_merge(array(NULL,), $chado_tables);
  161. $form["fields_column_join_$i"] = array(
  162. '#type' => 'select',
  163. '#prefix' => "<div class=\"fields-column-join\">",
  164. '#suffix' => "</div>",
  165. '#options' => $chado_tables,
  166. '#required' => FALSE,
  167. '#ahah' => array(
  168. 'path' => 'admin/tripal/tripal_views_setup/ajax/field_col_join',
  169. 'wrapper' => "fields-column-join-column-$i",
  170. 'effect' => 'fade',
  171. 'event' => 'change',
  172. 'method' => 'replace',
  173. ),
  174. );
  175. $form["fields_column_join_column_$i"] = array(
  176. '#type' => 'select',
  177. '#prefix' => "<div id=\"fields-column-join-column-$i\" class=\"fields-column-join-column\">",
  178. '#suffix' => "</div>",
  179. '#options' => array(),
  180. '#required' => FALSE,
  181. );
  182. $form["fields_column_handler_$i"] = array(
  183. '#type' => 'select',
  184. '#prefix' => "<div class=\"fields-column-handler\">",
  185. '#suffix' => "</div>",
  186. '#options' => $handlers,
  187. '#required' => FALSE,
  188. );
  189. $form["fields_end_$i"] = array(
  190. '#type' => 'markup',
  191. '#value' => "</div>",
  192. );
  193. $i++;
  194. }
  195. $form['row_counter'] = array(
  196. '#type' => 'hidden',
  197. '#value' => $i,
  198. );
  199. $form['submit'] = array(
  200. '#type' => 'submit',
  201. '#value' => 'Create',
  202. );
  203. return $form;
  204. }
  205. function tripal_views_setup_fields_form_submit($form, &$form_state){
  206. dpm($form,'formfield');
  207. dpm($form_state, 'formstatefield');
  208. }
  209. /**
  210. *
  211. * @ingroup tripal_view_search
  212. */
  213. function tripal_view_search_ajax_field_col_join(){
  214. dpm($_POST);
  215. dpm($_POST['row_counter'], 'rowcounter');
  216. drupal_json(array('status' => TRUE, 'data' => 'howdy'));
  217. }
  218. /**
  219. *
  220. * @ingroup tripal_view_search
  221. */
  222. function tripal_views_setup_new_search_form_submit($form, &$form_state){
  223. dpm($form,'form');
  224. dpm($form_state, 'formstate');
  225. }