tripal_stock-properties.inc 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. <?php
  2. /**
  3. *
  4. *
  5. * @ingroup tripal_stock
  6. */
  7. function tripal_stock_add_ALL_property_page($node) {
  8. $output = '';
  9. $output .= tripal_stock_add_chado_properties_progress('properties') . '<br>';
  10. $output .= '<b>All Properties should strictly pertain to THE CURRENT Individual</b><br>';
  11. $output .= '<br>';
  12. $output .= theme('tripal_stock_properties', $node);
  13. $output .= '<br><br>';
  14. $output .= drupal_get_form('tripal_stock_add_ONE_property_form', $node);
  15. $output .= '<br>';
  16. $output .= drupal_get_form('tripal_stock_add_chado_properties_navigate', 'properties', $node->nid);
  17. return $output;
  18. }
  19. /**
  20. *
  21. *
  22. * @ingroup tripal_stock
  23. */
  24. function tripal_stock_add_ONE_property_form($form_state, $node) {
  25. $form = array();
  26. $stock_id = $node->stock->stock_id;
  27. $form['add_properties'] = array(
  28. '#type' => 'fieldset',
  29. '#title' => t('Add Property') . '<span class="form-optional" title="This field is optional"> (optional)</span>',
  30. );
  31. $form['prop_nid'] = array(
  32. '#type' => 'hidden',
  33. '#value' => $node->nid
  34. );
  35. $tmp_obj = tripal_cv_get_cvterm_by_name('synonym', variable_get('chado_stock_prop_types_cv', 'null'));
  36. $synonym_id = $tmp_obj->cvterm_id;
  37. $prop_type_options = tripal_cv_get_cvterm_options( variable_get('chado_stock_prop_types_cv', 'null') );
  38. $prop_type_options[0] = 'Select a Type';
  39. ksort($prop_type_options);
  40. $form['add_properties']['prop_type_id'] = array(
  41. '#type' => 'select',
  42. '#title' => t('Type of Property'),
  43. '#options' => $prop_type_options,
  44. );
  45. $form['add_properties']['prop_value'] = array(
  46. '#type' => 'textfield',
  47. '#title' => t('Value') . '<span class="form-optional" title="This field is optional">+</span>',
  48. );
  49. $form['add_properties']['preferred_synonym'] = array(
  50. '#type' => 'checkbox',
  51. '#title' => t('Preferred Synonym (only applicable if type is synonym)'),
  52. );
  53. $form['add_properties']['prop_stock_id'] = array(
  54. '#type' => 'value',
  55. '#value' => $stock_id,
  56. '#required' => TRUE
  57. );
  58. $form['add_properties']['submit-add'] = array(
  59. '#type' => 'submit',
  60. '#value' => t('Add Property')
  61. );
  62. return $form;
  63. }
  64. /**
  65. *
  66. *
  67. * @ingroup tripal_stock
  68. */
  69. function tripal_stock_add_ONE_property_form_validate($form, &$form_state) {
  70. // Only Require if Adding Property
  71. if ($form_state['clicked_button']['#value'] == t('Add Property') ) {
  72. // Check that there is a stock
  73. if ( $form_state['values']['prop_stock_id'] <= 0 ) {
  74. form_set_error('prop_stock_id', 'There is no associated stock.');
  75. }
  76. // Check that Selected a type
  77. if ( $form_state['values']['prop_type_id'] == 0) {
  78. form_set_error('prop_type_id', 'Please select a type of property.');
  79. }
  80. else {
  81. // Check that type is in chado
  82. $previous_db = tripal_db_set_active('chado');
  83. $num_rows = db_fetch_object(db_query("SELECT count(*) as count FROM {cvterm} WHERE cvterm_id=%d", $form_state['values']['prop_type_id']));
  84. tripal_db_set_active($previous_db);
  85. if ( $num_rows->count != 1) {
  86. form_set_error('prop_type_id', "The type you selected is not valid. Please choose another one. (CODE:$num_rows)");
  87. } // end of if more or less than 1 row
  88. } // if no prop type
  89. // only check preferred synonym if type is synonym
  90. if ($form_state['values']['preferred_synonym'] == 1) {
  91. $tmp_obj = tripal_cv_get_cvterm_by_name('synonym', variable_get('chado_stock_prop_types_cv', 'null'));
  92. if ($form_state['values']['prop_type_id'] != $tmp_obj->cvterm_id) {
  93. form_set_error('preferred_synonym', 'Preferred Synonym Checkbox Only Applicable if Type of Property is Synonym');
  94. }
  95. }
  96. } // if add Property
  97. }
  98. /**
  99. *
  100. *
  101. * @ingroup tripal_stock
  102. */
  103. function tripal_stock_add_ONE_property_form_submit($form, &$form_state) {
  104. // if there is a property add it (only won't be a property if clicked next step w/ no property)
  105. if ($form_state['values']['prop_type_id'] != 0) {
  106. //determine the rank for this property
  107. $max_rank = get_max_chado_rank('stockprop',
  108. array('stock_id' => array('type' => 'INT', 'value' => $form_state['values']['prop_stock_id']),
  109. 'type_id' => array('type' => 'INT', 'value' => $form_state['values']['prop_type_id']) ));
  110. if ($max_rank == -1) {
  111. $rank = 0;
  112. }
  113. else { $rank = $max_rank+1; }
  114. $previous_db = tripal_db_set_active('chado');
  115. db_query(
  116. "INSERT INTO {stockprop} (stock_id, type_id, value, rank) VALUES (%d, %d, '%s', %d)",
  117. $form_state['values']['prop_stock_id'],
  118. $form_state['values']['prop_type_id'],
  119. $form_state['values']['prop_value'],
  120. $rank
  121. );
  122. tripal_db_set_active($previous_db);
  123. drupal_set_message("Successfully Added Property");
  124. // Set Preferred Synonym
  125. if ($form_state['values']['preferred_synonym'] == 1) {
  126. //use update node form so that both title and name get set
  127. $node = node_load($form_state['values']['prop_nid']);
  128. $node->title = $form_state['values']['prop_value'];
  129. $node_form_state = array(
  130. 'values' => array(
  131. 'title' => $form_state['values']['prop_value'],
  132. 'op' => 'Save'
  133. )
  134. );
  135. module_load_include('inc', 'node', 'node.pages');
  136. drupal_execute('chado_stock_node_form', $node_form_state, $node);
  137. }
  138. } //end of if property to add
  139. }
  140. /**
  141. *
  142. *
  143. * @ingroup tripal_stock
  144. */
  145. function tripal_stock_edit_ALL_properties_page($node) {
  146. $output = '';
  147. $output .= drupal_get_form('tripal_stock_edit_ALL_properties_form', $node);
  148. $output .= '<br>';
  149. $output .= drupal_get_form('tripal_stock_add_ONE_property_form', $node);
  150. $output .= '<br>';
  151. $output .= drupal_get_form('tripal_stock_back_to_stock_button', $node->nid);
  152. return $output;
  153. }
  154. /**
  155. * Implements Hook_form(): Handles adding of Properties & Synonyms to Stocks
  156. *
  157. * @ingroup tripal_stock
  158. */
  159. function tripal_stock_edit_ALL_properties_form($form_state, $node) {
  160. $form = array();
  161. // Add properties and synonyms
  162. $node = tripal_core_expand_chado_vars($node, 'table', 'stockprop');
  163. $form['nid'] = array(
  164. '#type' => 'hidden',
  165. '#value' => $node->nid
  166. );
  167. $i=0;
  168. if (!$node->stock->stockprop) {
  169. $node->stock->stockprop = array();
  170. }
  171. elseif (!is_array($node->stock->stockprop)) {
  172. $node->stock->stockprop = array($node->stock->stockprop);
  173. }
  174. if (sizeof($node->stock->stockprop) != 0) {
  175. foreach ($node->stock->stockprop as $property) {
  176. $i++;
  177. $form["num-$i"] = array(
  178. '#type' => 'item',
  179. '#value' => $i . '.'
  180. );
  181. $form["id-$i"] = array(
  182. '#type' => 'hidden',
  183. '#value' => $property->stockprop_id
  184. );
  185. $prop_type_options = tripal_cv_get_cvterm_options( variable_get('chado_stock_prop_types_cv', 'null') );
  186. ksort($prop_type_options);
  187. $form["type-$i"] = array(
  188. '#type' => 'select',
  189. //'#title' => t('Type of Property'),
  190. '#options' => $prop_type_options,
  191. '#default_value' => $property->type_id->cvterm_id
  192. );
  193. $form["value-$i"] = array(
  194. '#type' => 'textfield',
  195. //'#title' => t('Value'),
  196. '#default_value' => $property->value
  197. );
  198. $form["submit-$i"] = array(
  199. '#type' => 'submit',
  200. '#value' => t("Delete #$i")
  201. );
  202. }} //end of foreach property
  203. $form['num_properties'] = array(
  204. '#type' => 'hidden',
  205. '#value' => $i
  206. );
  207. $form["submit-edits"] = array(
  208. '#type' => 'submit',
  209. '#value' => t('Update Properties')
  210. );
  211. return $form;
  212. }
  213. /**
  214. *
  215. *
  216. * @ingroup tripal_stock
  217. */
  218. function tripal_stock_edit_ALL_properties_form_submit($form, &$form_state) {
  219. if ($form_state['clicked_button']['#value'] == t('Update Properties') ) {
  220. //Update all
  221. for ($i=1; $i<=$form_state['values']['num_properties']; $i++) {
  222. tripal_stock_update_property($form_state['values']["id-$i"], $form_state['values']["type-$i"], $form_state['values']["value-$i"], $form_state['values']["preferred-$i"], $form_state['values']["nid"]);
  223. }
  224. drupal_set_message("Updated all Properties");
  225. drupal_goto('node/' . $form_state['values']['nid']);
  226. }
  227. elseif ( preg_match('/Delete #(\d+)/', $form_state['clicked_button']['#value'], $matches) ) {
  228. $i = $matches[1];
  229. tripal_stock_delete_property($form_state['values']["id-$i"], $form_state['values']["type-$i"], $form_state['values']["value-$i"]);
  230. drupal_set_message("Deleted Property");
  231. }
  232. else {
  233. drupal_set_message("Unrecognized Button Pressed", 'error');
  234. }
  235. }
  236. /**
  237. *
  238. *
  239. * @ingroup tripal_stock
  240. */
  241. function tripal_stock_update_property($stockprop_id, $cvterm_id, $value, $preferred, $nid) {
  242. $previous_db = tripal_db_set_active('chado');
  243. $old_obj = db_fetch_object(db_query("SELECT * FROM {stockprop} WHERE stockprop_id=%d", $stockprop_id));
  244. tripal_db_set_active($previous_db);
  245. // if they changed the type need to check rank
  246. // (if there is another property of the same type then rank needs to be increased to prevent collisions)
  247. if ($cvterm_id == $old_obj->type_id) {
  248. $previous_db = tripal_db_set_active('chado');
  249. db_query(
  250. "UPDATE {stockprop} SET type_id=%d, value='%s' WHERE stockprop_id=%d",
  251. $cvterm_id,
  252. $value,
  253. $stockprop_id
  254. );
  255. tripal_db_set_active($previous_db);
  256. }
  257. else {
  258. //determine the rank for this property
  259. $max_rank = get_max_chado_rank('stockprop',
  260. array('stock_id' => array('type' => 'INT', 'value' => $old_obj->stock_id),
  261. 'type_id' => array('type' => 'INT', 'value' => $cvterm_id ) ));
  262. if ($max_rank == -1) {
  263. $rank = 0;
  264. }
  265. else { $rank = $max_rank+1; }
  266. $previous_db = tripal_db_set_active('chado');
  267. db_query(
  268. "UPDATE {stockprop} SET type_id=%d, value='%s', rank=%d WHERE stockprop_id=%d",
  269. $cvterm_id,
  270. $value,
  271. $rank,
  272. $stockprop_id
  273. );
  274. tripal_db_set_active($previous_db);
  275. }
  276. // Set Preferred Synonym
  277. //use update node form so that both title and name get set
  278. if ($preferred) {
  279. $node = node_load($nid);
  280. $node->title = $value;
  281. $node_form_state = array(
  282. 'values' => array(
  283. 'title' => $value,
  284. 'op' => 'Save'
  285. )
  286. );
  287. module_load_include('inc', 'node', 'node.pages');
  288. drupal_execute('chado_stock_node_form', $node_form_state, $node);
  289. }
  290. }
  291. /**
  292. *
  293. *
  294. * @ingroup tripal_stock
  295. */
  296. function tripal_stock_delete_property($stockprop_id) {
  297. $previous_db = tripal_db_set_active('chado');
  298. db_query(
  299. "DELETE FROM {stockprop} WHERE stockprop_id=%d",
  300. $stockprop_id
  301. );
  302. tripal_db_set_active($previous_db);
  303. }
  304. /**
  305. *
  306. *
  307. * @ingroup tripal_stock
  308. */
  309. function theme_tripal_stock_edit_ALL_properties_form($form) {
  310. $output = '';
  311. $output .= '<br><fieldset>';
  312. $output .= '<legend>Edit Already Existing Properties<span class="form-optional" title="This field is optional">(optional)</span></legend>';
  313. $output .= '<p>Below is a list of already existing properties for this stock, one property per line. The type refers to the type of '
  314. .'property and the value is the value for that property. For example, if this stock has a seed coat colour of green then '
  315. .'the property type=sead coat colour and the value=green. When the type of property is synonym, there is an extra checkbox '
  316. .'allowing you to specify which is the <b>Preferred Synonym</b>. This will change the current name of the stock.</p>';
  317. $output .= '<table>';
  318. $output .= '<tr><th>#</th><th>Type</th><th>Value</th><th></th></tr>';
  319. for ($i=1; $i<=$form['num_properties']['#value']; $i++) {
  320. $output .= '<tr><td>' . drupal_render($form["num-$i"]) . '</td><td>' . drupal_render($form["type-$i"]) . '</td><td>' . drupal_render($form["value-$i"]) . drupal_render($form["preferred-$i"]) . '</td><td>' . drupal_render($form["submit-$i"]) . '</td></tr>';
  321. }
  322. $output .= '</table><br>';
  323. $output .= drupal_render($form);
  324. $output .= '</fieldset>';
  325. return $output;
  326. }
  327. /**
  328. *
  329. *
  330. * @ingroup tripal_stock
  331. */
  332. function tripal_stock_list_properties_for_node($properties, $synonyms) {
  333. if (!empty($properties) OR !empty($synonyms) ) {
  334. $output = '<table>';
  335. $output .= '<tr><th>Type</th><th>Value</th></tr>';
  336. if (!empty($synonyms) ) {
  337. foreach ($synonyms as $s) {
  338. $output .= '<tr><td>synonym</td><td>' . $s . '</td></tr>';
  339. }
  340. }
  341. if (!empty($properties) ) {
  342. foreach ($properties as $p) {
  343. $output .= '<tr><td>' . $p->type . '</td><td>' . $p->value . '</td></tr>';
  344. } // end of foreach property
  345. }
  346. $output .= '</table>';
  347. }
  348. else {
  349. $output = 'No Properties Added to the Current Stock';
  350. }
  351. return $output;
  352. }