123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452 |
- <?php
- function tripal_stock_add_ALL_dbreferences_page($node) {
- $output = '';
- $output .= tripal_stock_add_chado_properties_progress('db_references') . '<br />';
- $output .= '<b>All Database References should strictly pertain to THE CURRENT Individual</b><br />';
- $output .= '<br />';
- $output .= theme('tripal_stock_references', $node);
- $output .= '<br /><br />';
- $output .= drupal_get_form('tripal_stock_add_ONE_dbreference_form', $node);
- $output .= '<br />';
- $output .= drupal_get_form('tripal_stock_add_chado_properties_navigate', 'db_references', $node->nid);
- return $output;
- }
- function tripal_stock_add_ONE_dbreference_form($form_state, $node) {
- $stock_id = $node->stock->stock_id;
- $form['db_nid'] = array(
- '#type' => 'hidden',
- '#value' => $node->nid
- );
- $form['add_dbreference'] = array(
- '#type' => 'fieldset',
- '#title' => t('Add Database References') . '<span class="form-optional" title="This field is optional">(optional)</span>',
- );
- $form['add_properties']['db_stock_id'] = array(
- '#type' => 'value',
- '#value' => $stock_id,
- '#required' => TRUE
- );
- $form['add_dbreference']['accession'] = array(
- '#type' => 'textfield',
- '#title' => t('Accession Number'),
- );
- $form['add_dbreference']['db_description'] = array(
- '#type' => 'textarea',
- '#title' => t('Description of Database Reference') . '<span class="form-optional" title="This field is optional">+</span>',
- '#description' => t('Optionally enter a description about the database accession.')
- );
- $db_options = tripal_db_get_db_options();
- $db_options[0] = 'Select a Database';
- ksort($db_options);
- $form['add_dbreference']['database'] = array(
- '#type' => 'select',
- '#title' => t('Database'),
- '#options' => $db_options,
- );
- $form['add_dbreference']['submit'] = array(
- '#type' => 'submit',
- '#value' => t('Add Database Reference')
- );
- return $form;
- }
- function tripal_stock_add_ONE_dbreference_form_validate($form, &$form_state) {
-
- if ($form_state['clicked_button']['#value'] == t('Add Database Reference') ) {
-
- if ($form_state['values']['accession'] == '') {
- form_set_error('accession', 'Accession field is Required.');
- }
-
- if ( $form_state['values']['database'] > 0) {
- $tmp_obj = db_fetch_object(chado_query("SELECT count(*) as count FROM {db} WHERE db_id=%d", $form_state['values']['database']));
- if ($tmp_obj->count != 1) {
- form_set_error('database', 'The database you selected is not valid. Please choose another one.');
- }
- }
- else {
- form_set_error('database', 'Please select a database');
- }
-
- $tmp_obj = db_fetch_object(chado_query("SELECT count(*) as count FROM {dbxref} WHERE accession='%s'", $form_state['values']['accession']));
- if ($tmp_obj->count > 0) {
- form_set_error('accession', 'This accession has already been assigned to another stock.');
- }
- }
- }
- function tripal_stock_add_ONE_dbreference_form_submit($form, &$form_state) {
-
-
- if (empty($form_state['values']['db_stock_id'])) {
- $form_state['values']['db_stock_id'] = $form_state['clicked_button']['#post']['db_stock_id']; }
-
- if ($form_state['values']['database'] > 0) {
-
- chado_query(
- "INSERT INTO {dbxref} (db_id, accession, description) VALUES (%d, '%s', '%s')",
- $form_state['values']['database'],
- $form_state['values']['accession'],
- $form_state['values']['db_description']
- );
-
- $dbxref = tripal_db_get_dbxref_by_accession($form_state['values']['accession'], $form_state['values']['database']);
- if (!empty($dbxref->dbxref_id)) {
- chado_query(
- "INSERT INTO {stock_dbxref} (stock_id, dbxref_id) VALUES (%d, %d)",
- $form_state['values']['db_stock_id'],
- $dbxref->dbxref_id
- );
- drupal_set_message(t('Successfully Added Database Reference'));
- }
- else {
- drupal_set_message(t('Database reference NOT successfully created...'), 'error');
- }
- }
- }
- function tripal_stock_edit_ALL_dbreferences_page($node) {
- $output = '';
- $output .= drupal_get_form('tripal_stock_edit_ALL_db_references_form', $node);
- $output .= '<br />';
- $output .= drupal_get_form('tripal_stock_add_ONE_dbreference_form', $node);
- $output .= '<br />';
- $output .= drupal_get_form('tripal_stock_back_to_stock_button', $node->nid);
- return $output;
- }
- function tripal_stock_edit_ALL_db_references_form($form_state, $node) {
- $form = array();
-
- $node = tripal_core_expand_chado_vars($node, 'table', 'stock_dbxref');
- $form['nid'] = array(
- '#type' => 'hidden',
- '#value' => $node->nid
- );
- $i=0;
- if (!$node->stock->stock_dbxref) {
- $node->stock->stock_dbxref = array();
- }
- elseif (!is_array($node->stock->stock_dbxref)) {
- $node->stock->stock_dbxref = array($node->stock->stock_dbxref);
- }
- if (sizeof($node->stock->stock_dbxref) != 0) {
- foreach ($node->stock->stock_dbxref as $ref) {
- $i++;
- $form["num-$i"] = array(
- '#type' => 'item',
- '#value' => $i . '.'
- );
- $form["accession-$i"] = array(
- '#type' => 'textfield',
-
- '#size' => 30,
- '#required' => TRUE,
- '#default_value' => $ref->dbxref_id->accession
- );
- $db_options = tripal_db_get_db_options();
- $db_options[0] = 'Select a Database';
- ksort($db_options);
- $form["database-$i"] = array(
- '#type' => 'select',
-
- '#options' => $db_options,
- '#default_value' => $ref->dbxref_id->db_id->db_id
- );
- $form["id-$i"] = array(
- '#type' => 'hidden',
- '#value' => $ref->dbxref_id->dbxref_id
- );
- $form["submit-$i"] = array(
- '#type' => 'submit',
- '#value' => t("Delete #$i")
- );
- }}
- $form['num_db_references'] = array(
- '#type' => 'hidden',
- '#value' => $i
- );
- $form["submit-edits"] = array(
- '#type' => 'submit',
- '#value' => t('Update DB References')
- );
- return $form;
- }
- function tripal_stock_edit_ALL_db_references_form_submit($form, &$form_state) {
- if ($form_state['clicked_button']['#value'] == t('Update DB References') ) {
-
- for ($i=1; $i<=$form_state['values']['num_db_references']; $i++) {
- tripal_stock_update_db_reference(
- $form_state['values']["id-$i"],
- $form_state['values']["database-$i"],
- $form_state['values']["accession-$i"]
- );
- }
- drupal_set_message(t("Updated all Database References"));
- drupal_goto('node/' . $form_state['values']['nid']);
- }
- elseif ( preg_match('/Delete #(\d+)/', $form_state['clicked_button']['#value'], $matches) ) {
- $i = $matches[1];
- tripal_stock_delete_db_reference($form_state['values']["id-$i"]);
- drupal_set_message(t("Deleted Database Reference"));
- }
- else {
- drupal_set_message(t("Unrecognized Button Pressed"), 'error');
- }
- }
- function tripal_stock_update_db_reference($dbxref_id, $database_id, $accession) {
- chado_query(
- "UPDATE {dbxref} SET db_id=%d, accession='%s' WHERE dbxref_id=%d",
- $database_id,
- $accession,
- $dbxref_id
- );
- }
- function tripal_stock_delete_db_reference($dbxref_id) {
- chado_query(
- "DELETE FROM {dbxref} WHERE dbxref_id=%d",
- $dbxref_id
- );
- chado_query(
- "DELETE FROM {stock_dbxref} WHERE dbxref_id=%d",
- $dbxref_id
- );
- }
- function theme_tripal_stock_edit_ALL_db_references_form($form) {
- $output = '';
- $output .= '<br /><fieldset>';
- $output .= '<legend>Edit Existing Database References<span class="form-optional" title="This field is optional">(optional)</span></legend>';
- $output .= '<p>Below is a list of already existing database references, one per line. When entering a database reference, the accession '
- .'is a unique identifier for this stock in the specified database.</p>';
- $output .= '<table>';
- $output .= '<tr><th>#</th><th>Database</th><th>Accession</th><th></th></tr>';
- for ($i=1; $i<=$form['num_db_references']['#value']; $i++) {
- $output .= '<tr><td>' . drupal_render($form["num-$i"]) . '</td><td>'
- . drupal_render($form["database-$i"]) . '</td><td>'
- . drupal_render($form["accession-$i"]) . '</td><td>'
- . drupal_render($form["submit-$i"]) . '</td></tr>';
- }
- $output .= '</table><br />';
- $output .= drupal_render($form);
- $output .= '</fieldset>';
- return $output;
- }
- function tripal_stock_list_dbreferences_for_node($db_references) {
- if (!empty($db_references) ) {
- $output = '<table>';
- $output .= '<tr><th>Database</th><th>Accession</th></tr>';
- foreach ($db_references as $db) {
- $output .= '<tr><td>' . $db->db_name . '</td><td>' . $db->accession . '</td></tr>';
- }
- $output .= '</table>';
- }
- else {
- $output = 'No Database References Added to the Current Stock';
- }
- return $output;
- }
|