tripal_analysis.form.inc 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694
  1. <?php
  2. /**
  3. * When editing or creating a new node of type 'chado_analysis' we need
  4. * a form. This function creates the form that will be used for this.
  5. *
  6. * @ingroup tripal_analysis
  7. */
  8. function chado_analysis_form(&$node, $form_state = NULL) {
  9. tripal_core_ahah_init_form();
  10. $form = array();
  11. $analysis = $node->analysis;
  12. // add in the description column. It is a text field and may not be included
  13. // if the text is too big.
  14. $analysis = tripal_core_expand_chado_vars($analysis, 'field', 'analysis.description');
  15. // get form defaults
  16. $analysis_id = $node->analysis_id;
  17. if (!$analysis_id) {
  18. $analysis_id = $analysis->analysis_id;
  19. }
  20. $analysisname = $node->analysisname;
  21. if (!$analysisname) {
  22. $analysisname = $analysis->name;
  23. }
  24. $program = $node->program;
  25. if (!$program) {
  26. $program = $analysis->program;
  27. }
  28. $programversion = $node->programversion;
  29. if (!$programversion) {
  30. $programversion = $analysis->programversion;
  31. }
  32. $algorithm = $node->algorithm;
  33. if (!$algorithm) {
  34. $algorithm = $analysis->algorithm;
  35. }
  36. $sourcename = $node->sourcename;
  37. if (!$sourcename) {
  38. $sourcename = $analysis->sourcename;
  39. }
  40. $sourceversion = $node->sourceversion;
  41. if (!$sourceversion) {
  42. $sourceversion = $analysis->sourceversion;
  43. }
  44. $sourceuri = $node->sourceuri;
  45. if (!$sourceuri) {
  46. $sourceuri = $analysis->sourceuri;
  47. }
  48. $timeexecuted = $node->timeexecuted;
  49. if (!$timeexecuted) {
  50. $timeexecuted = $analysis->timeexecuted;
  51. }
  52. $description = $node->description;
  53. if (!$description) {
  54. $description = $analysis->description;
  55. }
  56. // on AHAH callbacks we want to keep a list of all the properties that have been removed
  57. // we'll store this info in a hidden field and retrieve it here
  58. $d_removed = $form_state['values']['removed'];
  59. // get the number of new fields that have been aded via AHAH callbacks
  60. $num_new = $form_state['values']['num_new'] ? $form_state['values']['num_new'] : 0;
  61. // initialze default properties array. This is where we store the property defaults
  62. $d_properties = array();
  63. $form['title']= array(
  64. '#type' => 'hidden',
  65. '#default_value' => $node->title,
  66. );
  67. $form['analysis_id']= array(
  68. '#type' => 'hidden',
  69. '#default_value' => $analysis_id,
  70. );
  71. $form['analysisname']= array(
  72. '#type' => 'textfield',
  73. '#title' => t('Analysis Name'),
  74. '#required' => TRUE,
  75. '#default_value' => $analysisname,
  76. '#description' => t("This should be a brief name that
  77. describes the analysis succintly. This name will helps the user find analyses."),
  78. );
  79. $form['program']= array(
  80. '#type' => 'textfield',
  81. '#title' => t('Program'),
  82. '#required' => TRUE,
  83. '#default_value' => $program,
  84. '#description' => t("Program name, e.g. blastx, blastp, sim4, genscan."),
  85. );
  86. $form['programversion']= array(
  87. '#type' => 'textfield',
  88. '#title' => t('Program Version'),
  89. '#required' => TRUE,
  90. '#default_value' => $programversion,
  91. '#description' => t("Version description, e.g. TBLASTX 2.0MP-WashU [09-Nov-2000]. Enter 'n/a' if no version is available."),
  92. );
  93. $form['algorithm']= array(
  94. '#type' => 'textfield',
  95. '#title' => t('Algorithm'),
  96. '#required' => FALSE,
  97. '#default_value' => $algorithm,
  98. '#description' => t("Algorithm name, e.g. blast."),
  99. );
  100. $form['sourcename']= array(
  101. '#type' => 'textfield',
  102. '#title' => t('Source Name'),
  103. '#required' => TRUE,
  104. '#default_value' => $sourcename,
  105. '#description' => t('The name of the source data. This could be a file name, data set name or a
  106. small description for how the data was collected. For long descriptions use the description field below'),
  107. );
  108. $form['sourceversion']= array(
  109. '#type' => 'textfield',
  110. '#title' => t('Source Version'),
  111. '#required' => FALSE,
  112. '#default_value' => $sourceversion,
  113. '#description' => t('If the source dataset has a version, include it here'),
  114. );
  115. $form['sourceuri']= array(
  116. '#type' => 'textfield',
  117. '#title' => t('Source URI'),
  118. '#required' => FALSE,
  119. '#default_value' => $sourceuri,
  120. '#description' => t("This is a permanent URL or URI for the source of the analysis.
  121. Someone could recreate the analysis directly by going to this URI and
  122. fetching the source data (e.g. the blast database, or the training model)."),
  123. );
  124. // Get time saved in chado
  125. $default_time = $timeexecuted;
  126. $year = preg_replace("/^(\d+)-\d+-\d+ .*/", "$1", $default_time);
  127. $month = preg_replace("/^\d+-0?(\d+)-\d+ .*/", "$1", $default_time);
  128. $day = preg_replace("/^\d+-\d+-0?(\d+) .*/", "$1", $default_time);
  129. // If the time is not set, use current time
  130. if (!$default_time) {
  131. $default_time = REQUEST_TIME;
  132. $year = format_date($default_time, 'custom', 'Y');
  133. $month = format_date($default_time, 'custom', 'n');
  134. $day = format_date($default_time, 'custom', 'j');
  135. }
  136. $form['timeexecuted']= array(
  137. '#type' => 'date',
  138. '#title' => t('Time Executed'),
  139. '#required' => TRUE,
  140. '#default_value' => array(
  141. 'year' => $year,
  142. 'month' => $month,
  143. 'day' => $day,
  144. ),
  145. );
  146. $form['description']= array(
  147. '#type' => 'textarea',
  148. '#rows' => 15,
  149. '#title' => t('Materials & Methods (Description and/or Program Settings)'),
  150. '#required' => FALSE,
  151. '#default_value' => $description,
  152. '#description' => t('Please provide all necessary information to allow
  153. someone to recreate the analysis, including materials and methods
  154. for collection of the source data and performing the analysis'),
  155. );
  156. // get the analysis properties
  157. $properties_select = array();
  158. $properties_select[] = 'Select a Property';
  159. $properties_list = array();
  160. $sql = "
  161. SELECT DISTINCT CVT.cvterm_id, CVT.name, CVT.definition
  162. FROM {cvterm} CVT
  163. INNER JOIN {cv} ON CVT.cv_id = CV.cv_id
  164. WHERE
  165. CV.name = 'analysis_property' AND
  166. NOT CVT.is_obsolete = 1
  167. ORDER BY CVT.name ASC
  168. ";
  169. $prop_types = chado_query($sql);
  170. while ($prop = $prop_types->fetchObject()) {
  171. $properties_select[$prop->cvterm_id] = $prop->name;
  172. $properties_list[$prop->cvterm_id] = $prop;
  173. }
  174. $form['properties'] = array(
  175. '#type' => 'fieldset',
  176. '#title' => t('Analysis Details'),
  177. '#description' => t('You may add additional
  178. properties by
  179. selecting a property type from the dropdown and adding text. You may add
  180. as many properties as desired by clicking the plus button on the right. To
  181. remove a property, click the minus button. If a property is not available
  182. you may add it by ' . l('adding the term', 'admin/tripal/tripal_cv/cvterm/add') . '
  183. to the <b>analysis_property</b> vocabulary within the <b>tripal</b> database'),
  184. );
  185. $form['properties']['table'] = array(
  186. '#type' => 'markup',
  187. '#value' => '',
  188. '#prefix' => '<div id="tripal-analysis-edit-properties-table">',
  189. '#suffix' => '</div>',
  190. );
  191. // add in the properties from the analysisprop table
  192. $num_properties += chado_analysis_node_form_add_analysisprop_table_props($form, $form_state, $analysis_id, $d_properties, $d_removed);
  193. // add in any new properties that have been added by the user through an AHAH callback
  194. $num_new = chado_analysis_node_form_add_new_props($form, $form_state, $d_properties, $d_removed);
  195. // add an empty row of field to allow for addition of a new property
  196. chado_analysis_node_form_add_new_empty_props($form, $properties_select);
  197. return $form;
  198. }
  199. /**
  200. * Validates the user input before creating an analysis node
  201. *
  202. * @ingroup tripal_analysis
  203. */
  204. function chado_analysis_validate($node, &$form) {
  205. // use the analysis parent to validate the node
  206. tripal_analysis_validate($node, $form);
  207. }
  208. /**
  209. * This validation is being used for three activities:
  210. * CASE A: Update a node that exists in both drupal and chado
  211. * CASE B: Synchronizing a node from chado to drupal
  212. * CASE C: Inserting a new node that exists in niether drupal nor chado
  213. *
  214. * @ingroup tripal_analysis
  215. */
  216. function tripal_analysis_validate($node, &$form) {
  217. $node->analysisname = trim($node->analysisname);
  218. $node->description = trim($node->description);
  219. $node->program = trim($node->program);
  220. $node->programversion = trim($node->programversion);
  221. $node->algorithm = trim($node->algorithm);
  222. $node->sourcename = trim($node->sourcename);
  223. $node->sourceversion = trim($node->sourceversion);
  224. $node->sourceuri = trim($node->sourceuri);
  225. // Only nodes being updated will have an nid already
  226. if (!is_null($node->nid)) {
  227. // CASE A: We are validating a form for updating an existing node
  228. // get the existing node
  229. $values = array('analysis_id' => $node->analysis_id);
  230. $result = tripal_core_chado_select('analysis', array('*'), $values);
  231. $analysis = $result[0];
  232. // if the name has changed make sure it doesn't conflict with an existing name
  233. if ($analysis->name != $node->analysisname) {
  234. $values = array('name' => $node->analysisname);
  235. $result = tripal_core_chado_select('analysis', array('analysis_id'), $values);
  236. if ($result and count($result) > 0) {
  237. form_set_error('analysisname', 'Cannot update the analysis with this analysis name. An analysis with this name already exists.');
  238. return;
  239. }
  240. }
  241. // if the unique constraint has changed check to make sure it doesn't conflict with an
  242. // existing record
  243. if ($analysis->program != $node->program or $analysis->programversion != $node->programversion or
  244. $analysis->sourcename != $node->sourcename) {
  245. $values = array(
  246. 'program' => $node->program,
  247. 'programversion' => $node->programversion,
  248. 'sourcename' => $node->sourcename,
  249. );
  250. $result = tripal_core_chado_select('analysis', array('analysis_id'), $values);
  251. if ($result and count($result) > 0) {
  252. if ($analysis->program != $node->program) {
  253. $field = 'program';
  254. }
  255. if ($analysis->programversion != $node->programversion) {
  256. $field = 'programversion';
  257. }
  258. if ($analysis->sourcename != $node->sourcename) {
  259. $field = 'sourcename';
  260. }
  261. form_set_error($field, 'Cannot update the analysis with this program,
  262. program version and source name. An analysis with these values already exists.');
  263. return;
  264. }
  265. }
  266. }
  267. else {
  268. // To differentiate if we are syncing or creating a new analysis altogther, see if an
  269. // analysis_id already exists
  270. if ($node->analysis_id and $node->analysis_id != 0) {
  271. // CASE B: Synchronizing a node from chado to drupal
  272. // we don't need to do anything.
  273. }
  274. else {
  275. // CASE C: We are validating a form for inserting a new node
  276. // The unique constraint for the chado analysis table is: program, programversion, sourcename
  277. $values = array(
  278. 'program' => $node->program,
  279. 'programversion' => $node->programversion,
  280. 'sourcename' => $node->sourcename,
  281. );
  282. $analysis = tripal_core_chado_select('analysis', array('analysis_id'), $values);
  283. if ($analysis and count($analysis) > 0) {
  284. form_set_error('program', 'Cannot add the analysis with this program,
  285. program version and source name. An analysis with these values already exists.');
  286. return;
  287. }
  288. // make sure we have a unique analysis name. This is not a requirement
  289. // for the analysis table but we use the analysis name for the Drupal node
  290. // title, so it should be unique
  291. $values = array('name' => $node->analysisname);
  292. $result = tripal_core_chado_select('analysis', array('analysis_id'), $values);
  293. if ($result and count($result) > 0) {
  294. form_set_error('analysisname', 'Cannot add the analysis with this analysis name. An analysis with this name already exists.');
  295. return;
  296. }
  297. }
  298. }
  299. }
  300. /*
  301. *
  302. */
  303. function chado_analysis_node_form_add_new_empty_props(&$form, $properties_select) {
  304. // add one more blank set of property fields
  305. $form['properties']['table']['new']["new_id"] = array(
  306. '#type' => 'select',
  307. '#options' => $properties_select,
  308. '#ajax' => array(
  309. 'callback' => "tripal_analysis_property_get_description",
  310. 'wrapper' => 'tripal-analysis-new_value-desc',
  311. 'effect' => 'fade',
  312. 'event' => 'change',
  313. 'method' => 'replace',
  314. ),
  315. );
  316. $form['properties']['table']['new']["new_value"] = array(
  317. '#type' => 'textarea',
  318. '#default_value' => '',
  319. '#cols' => 5,
  320. '#rows' => $rows,
  321. '#description' => '<div id="tripal-analysis-new_value-desc"></div>'
  322. );
  323. $form['properties']['table']['new']["add"] = array(
  324. '#type' => 'image_button',
  325. '#value' => t('Add'),
  326. '#src' => drupal_get_path('theme', 'tripal') . '/images/add.png',
  327. '#ajax' => array(
  328. 'callback' => "tripal_analysis_property_add",
  329. 'wrapper' => 'tripal-analysis-edit-properties-table',
  330. 'effect' => 'fade',
  331. 'event' => 'click',
  332. 'method' => 'replace',
  333. ),
  334. '#attributes' => array('onClick' => 'return false;'),
  335. );
  336. }
  337. /*
  338. *
  339. */
  340. function chado_analysis_node_form_add_new_props(&$form, $form_state, &$d_properties, &$d_removed) {
  341. // first, add in all of the new properties that were added through a previous AHAH callback
  342. $j = 0;
  343. $num_properties++;
  344. // we need to find the
  345. if ($form_state['values']) {
  346. foreach ($form_state['values'] as $element_name => $value) {
  347. if (preg_match('/new_value-(\d+)-(\d+)/', $element_name, $matches)) {
  348. $new_id = $matches[1];
  349. $rank = $matches[2];
  350. // skip any properties that the user requested to delete through a previous
  351. // AHAH callback or through the current AHAH callback
  352. if ($d_removed["$new_id-$rank"]) {
  353. continue;
  354. }
  355. if ($form_state['post']['remove-' . $new_id . '-' . $rank]) {
  356. $d_removed["$new_id-$rank"] = 1;
  357. continue;
  358. }
  359. // get this new_id information
  360. $cvterm = tripal_core_chado_select('cvterm', array('name', 'definition'), array('cvterm_id' => $new_id));
  361. // add it to the $d_properties array
  362. $d_properties[$new_id][$rank]['name'] = $cvterm->name;
  363. $d_properties[$new_id][$rank]['id'] = $new_id;
  364. $d_properties[$new_id][$rank]['value'] = $value;
  365. $d_properties[$new_id][$rank]['definition'] = $cvterm->definition;
  366. $num_properties++;
  367. // determine how many rows we need in the textarea
  368. $rows = 1;
  369. // add the new fields
  370. $form['properties']['table']['new'][$new_id][$rank]["new_id-$new_id-$rank"] = array(
  371. '#type' => 'item',
  372. '#value' => $cvterm[0]->name
  373. );
  374. $form['properties']['table']['new'][$new_id][$rank]["new_value-$new_id-$rank"] = array(
  375. '#type' => 'textarea',
  376. '#default_value' => $value,
  377. '#cols' => 50,
  378. '#rows' => $rows,
  379. '#description' => $cvterm->definition,
  380. );
  381. $form['properties']['table']['new'][$new_id][$rank]["remove-$new_id-$rank"] = array(
  382. '#type' => 'image_button',
  383. '#value' => t('Remove'),
  384. '#src' => drupal_get_path('theme', 'tripal') . '/images/minus.png',
  385. '#ajax' => array(
  386. 'callback' => "tripal_analysis/properties/minus/$new_id/$rank",
  387. 'wrapper' => 'tripal-analysis-edit-properties-table',
  388. 'effect' => 'fade',
  389. 'event' => 'click',
  390. 'method' => 'replace',
  391. ),
  392. '#attributes' => array('onClick' => 'return false;'),
  393. );
  394. }
  395. }
  396. }
  397. // second add in any new properties added during this callback
  398. if ($form_state['post']['add']) {
  399. $new_id = $form_state['values']['new_id'];
  400. $new_value = $form_state['values']['new_value'];
  401. // get the rank by counting the number of entries
  402. $rank = count($d_properties[$new_id]);
  403. // get this new_id information
  404. $cvterm = tripal_core_chado_select('cvterm', array('name', 'definition'), array('cvterm_id' => $new_id));
  405. // add it to the $d_properties array
  406. $d_properties[$new_id][$rank]['name'] = $cvterm->name;
  407. $d_properties[$new_id][$rank]['id'] = $new_id;
  408. $d_properties[$new_id][$rank]['value'] = $value;
  409. $d_properties[$new_id][$rank]['definition'] = $cvterm->definition;
  410. $num_properties++;
  411. // determine how many rows we need in the textarea
  412. $rows = 1;
  413. // add the new fields
  414. $form['properties']['table']['new'][$new_id][$rank]["new_id-$new_id-$rank"] = array(
  415. '#type' => 'item',
  416. '#value' => $cvterm[0]->name
  417. );
  418. $form['properties']['table']['new'][$new_id][$rank]["new_value-$new_id-$rank"] = array(
  419. '#type' => 'textarea',
  420. '#default_value' => $new_value,
  421. '#cols' => 50,
  422. '#rows' => $rows,
  423. '#description' => $cvterm->definition,
  424. );
  425. $form['properties']['table']['new'][$new_id][$rank]["remove-$new_id-$rank"] = array(
  426. '#type' => 'image_button',
  427. '#value' => t('Remove'),
  428. '#src' => drupal_get_path('theme', 'tripal') . '/images/minus.png',
  429. '#ahah' => array(
  430. 'path' => "tripal_analysis/properties/minus/$new_id/$rank",
  431. 'wrapper' => 'tripal-analysis-edit-properties-table',
  432. 'event' => 'click',
  433. 'method' => 'replace',
  434. ),
  435. '#attributes' => array('onClick' => 'return false;'),
  436. );
  437. }
  438. return $num_properties;
  439. }
  440. /*
  441. *
  442. */
  443. function chado_analysis_node_form_add_analysisprop_table_props(&$form, $form_state, $analysis_id, &$d_properties, &$d_removed) {
  444. // get the properties for this analysis
  445. $num_properties = 0;
  446. if (!$analysis_id) {
  447. return $num_properties;
  448. }
  449. $sql = "
  450. SELECT CVT.cvterm_id, CVT.name, CVT.definition, PP.value, PP.rank
  451. FROM {analysisprop} PP
  452. INNER JOIN {cvterm} CVT on CVT.cvterm_id = PP.type_id
  453. INNER JOIN {cv} CV on CVT.cv_id = CV.cv_id
  454. WHERE PP.analysis_id = :analysis_id and CV.name = 'analysis_property'
  455. ORDER BY CVT.name, PP.rank
  456. ";
  457. $analysis_props = chado_query($sql, array(':analysis_id' => $analysis_id));
  458. while ($prop = $analysis_props->fetchObject()) {
  459. $type_id = $prop->cvterm_id;
  460. $rank = count($d_properties[$type_id]);
  461. // skip any properties that the user requested to delete through a previous
  462. // AHAH callback or through the current AHAH callback
  463. if ($d_removed["$type_id-$rank"]) {
  464. continue;
  465. }
  466. if ($form_state['post']['remove-' . $type_id . '-' . $rank]) {
  467. $d_removed["$type_id-$rank"] = 1;
  468. continue;
  469. }
  470. $d_properties[$type_id][$rank]['name'] = $prop->name;
  471. $d_properties[$type_id][$rank]['id'] = $type_id;
  472. $d_properties[$type_id][$rank]['value'] = $prop->value;
  473. $d_properties[$type_id][$rank]['definition'] = $prop->definition;
  474. $num_properties++;
  475. $form['properties']['table'][$type_id][$rank]["prop_id-$type_id-$rank"] = array(
  476. '#type' => 'item',
  477. '#value' => $prop->name,
  478. );
  479. $form['properties']['table'][$type_id][$rank]["prop_value-$type_id-$rank"] = array(
  480. '#type' => 'textarea',
  481. '#default_value' => $prop->value,
  482. '#cols' => 50,
  483. '#rows' => $rows,
  484. '#description' => $prop->definition,
  485. );
  486. $form['properties']['table'][$type_id][$rank]["remove-$type_id-$rank"] = array(
  487. '#type' => 'image_button',
  488. '#value' => t('Remove'),
  489. '#src' => drupal_get_path('theme', 'tripal') . '/images/minus.png',
  490. '#ahah' => array(
  491. 'path' => "tripal_analysis/properties/minus/$type_id/$rank",
  492. 'wrapper' => 'tripal-analysis-edit-properties-table',
  493. 'event' => 'click',
  494. 'method' => 'replace',
  495. ),
  496. '#attributes' => array('onClick' => 'return false;'),
  497. );
  498. }
  499. return $num_properties;
  500. }
  501. /*
  502. *
  503. */
  504. function tripal_analysis_theme_node_form_properties($form) {
  505. $rows = array();
  506. if ($form['properties']) {
  507. // first add in the properties derived from the analysisprop table
  508. // the array tree for these properties looks like this:
  509. // $form['properties']['table'][$type_id][$rank]["prop_id-$type_id-$rank"]
  510. foreach ($form['properties']['table'] as $type_id => $elements) {
  511. // there are other fields in the properties array so we only
  512. // want the numeric ones those are our type_id
  513. if (is_numeric($type_id)) {
  514. foreach ($elements as $rank => $element) {
  515. if (is_numeric($rank)) {
  516. $rows[] = array(
  517. drupal_render($element["prop_id-$type_id-$rank"]),
  518. drupal_render($element["prop_value-$type_id-$rank"]),
  519. drupal_render($element["remove-$type_id-$rank"]),
  520. );
  521. }
  522. }
  523. }
  524. }
  525. // second, add in any new properties added by the user through AHAH callbacks
  526. // the array tree for these properties looks like this:
  527. // $form['properties']['table']['new'][$type_id][$rank]["new_id-$new_id-$rank"]
  528. foreach ($form['properties']['table']['new'] as $type_id => $elements) {
  529. if (is_numeric($type_id)) {
  530. foreach ($elements as $rank => $element) {
  531. if (is_numeric($rank)) {
  532. $rows[] = array(
  533. drupal_render($element["new_id-$type_id-$rank"]),
  534. drupal_render($element["new_value-$type_id-$rank"]),
  535. drupal_render($element["remove-$type_id-$rank"]),
  536. );
  537. }
  538. }
  539. }
  540. }
  541. // finally add in a set of blank field for adding a new property
  542. $rows[] = array(
  543. drupal_render($form['properties']['table']['new']['new_id']),
  544. drupal_render($form['properties']['table']['new']['new_value']),
  545. drupal_render($form['properties']['table']['new']['add']),
  546. );
  547. }
  548. $headers = array('Property Type', 'Value', '');
  549. return theme('table', $headers, $rows);
  550. }
  551. /*
  552. *
  553. */
  554. function tripal_analysis_property_add() {
  555. $status = TRUE;
  556. // prepare and render the form
  557. $form = tripal_core_ahah_prepare_form();
  558. // we only want to return the properties as that's all we'll replace with this AHAh callback
  559. $data = tripal_analysis_theme_node_form_properties($form);
  560. // bind javascript events to the new objects that will be returned
  561. // so that AHAH enabled elements will work.
  562. $settings = tripal_core_ahah_bind_events();
  563. // return the updated JSON
  564. drupal_json(
  565. array(
  566. 'status' => $status,
  567. 'data' => $data,
  568. 'settings' => $settings,
  569. )
  570. );
  571. }
  572. /*
  573. *
  574. */
  575. function tripal_analysis_property_delete() {
  576. $status = TRUE;
  577. // prepare and render the form
  578. $form = tripal_core_ahah_prepare_form();
  579. // we only want to return the properties as that's all we'll replace with this AHAh callback
  580. $data = tripal_analysis_theme_node_form_properties($form);
  581. // bind javascript events to the new objects that will be returned
  582. // so that AHAH enabled elements will work.
  583. $settings = tripal_core_ahah_bind_events();
  584. // return the updated JSON
  585. drupal_json(
  586. array(
  587. 'status' => $status,
  588. 'data' => $data,
  589. 'settings' => $settings,
  590. )
  591. );
  592. }
  593. /*
  594. *
  595. */
  596. function tripal_analysis_property_get_description() {
  597. $new_id = $_POST['new_id'];
  598. $values = array('cvterm_id' => $new_id);
  599. $cvterm = tripal_core_chado_select('cvterm', array('definition'), $values);
  600. $description = '&nbsp;';
  601. if ($cvterm[0]->definition) {
  602. $description = $cvterm[0]->definition;
  603. }
  604. drupal_json(
  605. array(
  606. 'status' => TRUE,
  607. 'data' => '<div id="tripal-analysis-new_value-desc">' . $description . '</div>',
  608. )
  609. );
  610. }
  611. /*
  612. *
  613. */
  614. function theme_chado_analysis_node_form($form) {
  615. $properties_table = tripal_analysis_theme_node_form_properties($form);
  616. $markup .= $properties_table;
  617. $form['properties']['table'] = array(
  618. '#type' => 'markup',
  619. '#value' => $markup,
  620. '#prefix' => '<div id="tripal-analysis-edit-properties-table">',
  621. '#suffix' => '</div>',
  622. );
  623. $form['buttons']['#weight'] = 50;
  624. return drupal_render($form);
  625. }