tripal_library.chado_node.inc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697
  1. <?php
  2. /**
  3. * @file
  4. * Implements the library node content type
  5. */
  6. /**
  7. * Implements hook_node_info().
  8. *
  9. * Provide information to drupal about the node types that we're creating
  10. * in this module
  11. *
  12. * @ingroup tripal_library
  13. */
  14. function tripal_library_node_info() {
  15. $nodes = array();
  16. $nodes['chado_library'] = array(
  17. 'name' => t('Library'),
  18. 'base' => 'chado_library',
  19. 'description' => t('A library from the chado database'),
  20. 'has_title' => TRUE,
  21. 'locked' => TRUE,
  22. 'chado_node_api' => array(
  23. 'base_table' => 'library',
  24. 'hook_prefix' => 'chado_library',
  25. 'record_type_title' => array(
  26. 'singular' => t('Library'),
  27. 'plural' => t('Libraries')
  28. ),
  29. 'sync_filters' => array(
  30. 'type_id' => TRUE,
  31. 'organism_id' => TRUE
  32. ),
  33. )
  34. );
  35. return $nodes;
  36. }
  37. /**
  38. * Implements hook_form().
  39. *
  40. * When editing or creating a new node of type 'chado_library' we need
  41. * a form. This function creates the form that will be used for this.
  42. *
  43. * @ingroup tripal_library
  44. */
  45. function chado_library_form($node, &$form_state) {
  46. $form = array();
  47. // Default values can come in the following ways:
  48. //
  49. // 1) as elements of the $node object. This occurs when editing an existing library
  50. // 2) in the $form_state['values'] array which occurs on a failed validation or
  51. // ajax callbacks from non submit form elements
  52. // 3) in the $form_state['input'] array which occurs on ajax callbacks from submit
  53. // form elements and the form is being rebuilt
  54. //
  55. // set form field defaults
  56. $library_id = NULL;
  57. $libraryname = '';
  58. $uniquename = '';
  59. $library_type = '';
  60. $organism_id = '';
  61. $description = '';
  62. // if we are editing an existing node then the library is already part of the node
  63. if (property_exists($node, 'library')) {
  64. $library = $node->library;
  65. $library_id = $library->library_id;
  66. $libraryname = $library->name;
  67. $uniquename = $library->uniquename;
  68. $library_type = $library->type_id->cvterm_id;
  69. $organism_id = $library->organism_id->organism_id;
  70. $libprop = chado_get_property(
  71. array('table' => 'library', 'id' => $library->library_id),
  72. array('type_name' => 'Library Description', 'cv_name' => 'library_property')
  73. );
  74. $description = $libprop->value;
  75. // keep track of the library id if we have. If we do have one then
  76. // this is an update as opposed to an insert.
  77. $form['library_id'] = array(
  78. '#type' => 'value',
  79. '#value' => $library_id,
  80. );
  81. }
  82. // if we are re constructing the form from a failed validation or ajax callback
  83. // then use the $form_state['values'] values
  84. if (array_key_exists('values', $form_state)) {
  85. $libraryname = $form_state['values']['libraryname'];
  86. $uniquename = $form_state['values']['uniquename'];
  87. $library_type = $form_state['values']['library_type'];
  88. $organism_id = $form_state['values']['organism_id'];
  89. $description = $form_state['values']['description'];
  90. }
  91. // if we are re building the form from after submission (from ajax call) then
  92. // the values are in the $form_state['input'] array
  93. if (array_key_exists('input', $form_state) and !empty($form_state['input'])) {
  94. $libraryname = $form_state['input']['libraryname'];
  95. $uniquename = $form_state['input']['uniquename'];
  96. $library_type = $form_state['input']['library_type'];
  97. $organism_id = $form_state['input']['organism_id'];
  98. $description = $form_state['input']['description'];
  99. }
  100. $form['libraryname']= array(
  101. '#type' => 'textfield',
  102. '#title' => t('Library Name'),
  103. '#description' => t('Please enter the name for this library. Library names should be recognizable but do not need to be unique.'),
  104. '#required' => TRUE,
  105. '#default_value' => $libraryname,
  106. );
  107. $form['uniquename']= array(
  108. '#type' => 'textfield',
  109. '#title' => t('Unique Name'),
  110. '#description' => t('Please enter a unique name for this library. This can be any value used to uniquely identify a library.'),
  111. '#required' => TRUE,
  112. '#default_value' => $uniquename,
  113. );
  114. // get the list of library types
  115. $lt_cv = tripal_get_default_cv("library", "type_id");
  116. $types = tripal_get_cvterm_default_select_options('library', 'type_id', 'library types');
  117. $types[0] = 'Select a Type';
  118. $lt_message = tripal_set_message("To add additional items to the library type drop down list,
  119. add a term to the " .
  120. l($lt_cv->name . " controlled vocabulary",
  121. "admin/tripal/vocab/cv/" . $lt_cv->cv_id . "/cvterm/add",
  122. array('attributes' => array('target' => '_blank'))
  123. ),
  124. TRIPAL_INFO, array('return_html' => TRUE)
  125. );
  126. $form['library_type'] = array(
  127. '#title' => t('Library Type'),
  128. '#type' => t('select'),
  129. '#description' => t("Choose the library type."),
  130. '#required' => TRUE,
  131. '#default_value' => $library_type,
  132. '#options' => $types,
  133. '#suffix' => $lt_message,
  134. );
  135. // get the list of organisms
  136. $sql = "SELECT * FROM {organism}";
  137. $org_rset = chado_query($sql);
  138. $organisms = array();
  139. $organisms[''] = '';
  140. while ($organism = $org_rset->fetchObject()) {
  141. $organisms[$organism->organism_id] =
  142. "$organism->genus $organism->species ($organism->common_name)";
  143. }
  144. $form['organism_id'] = array(
  145. '#title' => t('Organism'),
  146. '#type' => t('select'),
  147. '#description' => t("Choose the organism with which this library is associated."),
  148. '#required' => TRUE,
  149. '#default_value' => $organism_id,
  150. '#options' => $organisms,
  151. );
  152. $form['description']= array(
  153. '#type' => 'text_format',
  154. '#title' => t('Library Description'),
  155. '#description' => t('A brief description of the library'),
  156. '#required' => TRUE,
  157. '#default_value' => $description,
  158. );
  159. // PROPERTIES FORM
  160. //---------------------------------------------
  161. $prop_cv = tripal_get_default_cv('libraryprop', 'type_id');
  162. $cv_id = $prop_cv ? $prop_cv->cv_id : NULL;
  163. $details = array(
  164. // The name of the prop table.
  165. 'property_table' => 'libraryprop',
  166. // The value of library_id for this record.
  167. 'chado_id' => $library_id,
  168. // The cv.cv_id of the cv governing libraryprop.type_id.
  169. 'cv_id' => $cv_id,
  170. );
  171. // If the default is the 'library_property' vocabulary then we want
  172. // to exclude the 'Library Description' term since it has it's own form
  173. // element above
  174. if ($prop_cv->name == 'library_property') {
  175. // Generate our own select list so we can exclude the description element
  176. $select_options = array();
  177. $cv_result = chado_select_record('cv', array('cv_id'), array('name' => 'library_property'));
  178. $cv_id = $cv_result[0]->cv_id;
  179. $select_options = tripal_get_cvterm_select_options($cv_id);
  180. $descrip_id = array_search('Library Description', $select_options);
  181. unset($select_options[$descrip_id]);
  182. $details['select_options'] = $select_options;
  183. }
  184. // Adds the form elements to your current form
  185. chado_add_node_form_properties($form, $form_state, $details);
  186. // ADDITIONAL DBXREFS FORM
  187. //---------------------------------------------
  188. $details = array(
  189. 'linking_table' => 'library_dbxref', // the name of the _dbxref table
  190. 'base_foreign_key' => 'library_id', // the name of the key in your base chado table
  191. 'base_key_value' => $library_id // the value of library_id for this record
  192. );
  193. // Adds the form elements to your current form
  194. chado_add_node_form_dbxrefs($form, $form_state, $details);
  195. return $form;
  196. }
  197. /**
  198. * Implements hook_validate().
  199. *
  200. * Validates submission of form when adding or updating a library node
  201. *
  202. * @ingroup tripal_library
  203. */
  204. function chado_library_validate($node, $form, &$form_state) {
  205. // We only want to validate when the node is saved.
  206. // Since this validate can be called on AJAX and Deletion of the node
  207. // we need to make this check to ensure queries are not executed
  208. // without the proper values.
  209. if(property_exists($node, "op") and $node->op != 'Save') {
  210. return;
  211. }
  212. // we are syncing if we do not have a node ID but we do have a featuremap_id. We don't
  213. // need to validate during syncing so just skip it.
  214. if (!property_exists($node, 'nid') and property_exists($node, 'library_id') and $node->library_id != 0) {
  215. return;
  216. }
  217. // trim white space from text fields
  218. $node->libraryname = property_exists($node, 'libraryname') ? trim($node->libraryname) : '';
  219. $node->uniquename = property_exists($node, 'uniquename') ? trim($node->uniquename) : '';
  220. $lib = 0;
  221. // check to make sure the unique name on the library is unique
  222. // before we try to insert into chado.
  223. if (property_exists($node, 'library_id')) {
  224. $sql = "
  225. SELECT *
  226. FROM {library}
  227. WHERE uniquename = :uname AND NOT library_id = :library_id
  228. ";
  229. $lib = chado_query($sql, array(':uname' => $node->uniquename, ':library_id' => $node->library_id))->fetchObject();
  230. }
  231. else {
  232. $sql = "SELECT * FROM {library} WHERE uniquename = :uname";
  233. $lib = chado_query($sql, array(':uname' => $node->uniquename))->fetchObject();
  234. }
  235. if ($lib) {
  236. form_set_error('uniquename', t('The unique library name already exists. Please choose another'));
  237. }
  238. }
  239. /**
  240. * Implements hook_insert().
  241. *
  242. * When a new chado_library node is created we also need to add information
  243. * to our chado_library table. This function is called on insert of a new node
  244. * of type 'chado_library' and inserts the necessary information.
  245. *
  246. * @ingroup tripal_library
  247. */
  248. function chado_library_insert($node) {
  249. $library_id = '';
  250. // if there is an library_id in the $node object then this must be a sync so
  251. // we can skip adding the library as it is already there, although
  252. // we do need to proceed with insertion into the chado/drupal linking table.
  253. if (!property_exists($node, 'library_id')) {
  254. $node->libraryname = trim($node->libraryname);
  255. $node->uniquename = trim($node->uniquename);
  256. $node->description = trim($node->description['value']);
  257. $values = array(
  258. 'name' => $node->libraryname,
  259. 'uniquename' => $node->uniquename,
  260. 'organism_id' => $node->organism_id,
  261. 'type_id' => $node->library_type,
  262. );
  263. $library = chado_insert_record('library', $values);
  264. if (!$library) {
  265. drupal_set_message(t('Unable to add library.', 'warning'));
  266. watchdog('tripal_library', 'Insert library: Unable to create library where values: %values',
  267. array('%values' => print_r($values, TRUE)), WATCHDOG_ERROR);
  268. return;
  269. }
  270. $library_id = $library['library_id'];
  271. // * Properties Form *
  272. // add the description property
  273. $properties = chado_retrieve_node_form_properties($node);
  274. $descrip_id = tripal_get_cvterm(array(
  275. 'name' => 'Library Description',
  276. 'cv_id' => array('name' => 'library_property')
  277. ));
  278. $properties[$descrip_id->cvterm_id][0] = $node->description;
  279. $details = array(
  280. 'property_table' => 'libraryprop', // the name of the prop table
  281. 'base_table' => 'library', // the name of your chado base table
  282. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  283. 'foreignkey_value' => $library_id // the value of the library_id key
  284. );
  285. chado_update_node_form_properties($node, $details, $properties);
  286. // * Additional DBxrefs Form *
  287. $details = array(
  288. 'linking_table' => 'library_dbxref', // the name of your _dbxref table
  289. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  290. 'foreignkey_value' => $library_id // the value of the library_id key
  291. );
  292. chado_update_node_form_dbxrefs($node, $details);
  293. }
  294. else {
  295. $library_id = $node->library_id;
  296. }
  297. // Make sure the entry for this library doesn't already exist in the
  298. // chado_library table if it doesn't exist then we want to add it.
  299. $check_org_id = chado_get_id_from_nid('library', $node->nid);
  300. if (!$check_org_id) {
  301. $record = new stdClass();
  302. $record->nid = $node->nid;
  303. $record->vid = $node->vid;
  304. $record->library_id = $library_id;
  305. drupal_write_record('chado_library', $record);
  306. }
  307. }
  308. /**
  309. * Implements hook_update().
  310. *
  311. * @ingroup tripal_library
  312. */
  313. function chado_library_update($node) {
  314. $node->libraryname = trim($node->libraryname);
  315. $node->uniquename = trim($node->uniquename);
  316. $node->description = trim($node->description['value']);
  317. // update the library record
  318. $library_id = chado_get_id_from_nid('library', $node->nid);
  319. $match = array(
  320. 'library_id' => $library_id,
  321. );
  322. $values = array(
  323. 'name' => $node->libraryname,
  324. 'uniquename' => $node->uniquename,
  325. 'organism_id' => $node->organism_id,
  326. 'type_id' => $node->library_type,
  327. );
  328. $status = chado_update_record('library', $match, $values);
  329. if (!$status) {
  330. drupal_set_message(t('Unable to update library.', 'warning'));
  331. watchdog('tripal_library', 'Update library: Unable to update library where values: %values',
  332. array('%values' => print_r($values, TRUE)), WATCHDOG_ERROR);
  333. }
  334. // * Properties Form *
  335. // add the description property
  336. $properties = chado_retrieve_node_form_properties($node);
  337. $descrip_id = tripal_get_cvterm(array(
  338. 'name' => 'Library Description',
  339. 'cv_id' => array('name' => 'library_property')
  340. ));
  341. $properties[$descrip_id->cvterm_id][0] = $node->description;
  342. $details = array(
  343. 'property_table' => 'libraryprop', // the name of the prop table
  344. 'base_table' => 'library', // the name of your chado base table
  345. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  346. 'foreignkey_value' => $library_id // the value of the library_id key
  347. );
  348. chado_update_node_form_properties($node, $details, $properties);
  349. // * Additional DBxrefs Form *
  350. $details = array(
  351. 'linking_table' => 'library_dbxref', // the name of your _dbxref table
  352. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  353. 'foreignkey_value' => $library_id // the value of the library_id key
  354. );
  355. chado_update_node_form_dbxrefs($node, $details);
  356. }
  357. /**
  358. * Implements hook_load().
  359. *
  360. * When a node is requested by the user this function is called to allow us
  361. * to add auxiliary data to the node object.
  362. *
  363. * @ingroup tripal_library
  364. */
  365. function chado_library_load($nodes) {
  366. foreach ($nodes as $nid => $node) {
  367. // get the feature details from chado
  368. $library_id = chado_get_id_from_nid('library', $node->nid);
  369. // if the nid does not have a matching record then skip this node.
  370. // this can happen with orphaned nodes.
  371. if (!$library_id) {
  372. continue;
  373. }
  374. $values = array('library_id' => $library_id);
  375. $library = chado_generate_var('library', $values);
  376. // the uniquename field is a text field so we need to expand it
  377. $library = chado_expand_var($library, 'field', 'library.uniquename');
  378. $nodes[$nid]->library = $library;
  379. // Now get the title
  380. $node->title = chado_get_node_title($node);
  381. }
  382. }
  383. /**
  384. * Implements hook_delete().
  385. *
  386. * Delete data from drupal and chado databases when a node is deleted
  387. *
  388. * @ingroup tripal_library
  389. */
  390. function chado_library_delete(&$node) {
  391. $library_id = chado_get_id_from_nid('library', $node->nid);
  392. // if we don't have a library id for this node then this isn't a node of
  393. // type chado_library or the entry in the chado_library table was lost.
  394. if (!$library_id) {
  395. return;
  396. }
  397. // Remove data from {chado_library}, {node} and {node_revisions} tables of
  398. // drupal database
  399. $sql_del = "DELETE FROM {chado_library} WHERE nid = :nid AND vid = :vid";
  400. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  401. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  402. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  403. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  404. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  405. // Remove data from library and libraryprop tables of chado database as well
  406. chado_query("DELETE FROM {libraryprop} WHERE library_id = :library_id", array(':library_id' => $library_id));
  407. chado_query("DELETE FROM {library} WHERE library_id = :library_id", array(':library_id' => $library_id));
  408. }
  409. /**
  410. * Implement hook_node_access().
  411. *
  412. * This hook allows node modules to limit access to the node types they define.
  413. *
  414. * @param $node
  415. * The node on which the operation is to be performed, or, if it does not yet exist, the
  416. * type of node to be created
  417. *
  418. * @param $op
  419. * The operation to be performed
  420. *
  421. * @param $account
  422. * A user object representing the user for whom the operation is to be performed
  423. *
  424. * @return
  425. * If the permission for the specified operation is not set then return FALSE. If the
  426. * permission is set then return NULL as this allows other modules to disable
  427. * access. The only exception is when the $op == 'create'. We will always
  428. * return TRUE if the permission is set.
  429. *
  430. * @ingroup tripal_library
  431. */
  432. function chado_library_node_access($node, $op, $account) {
  433. $node_type = $node;
  434. if (is_object($node)) {
  435. $node_type = $node->type;
  436. }
  437. if($node_type == 'chado_library') {
  438. if ($op == 'create') {
  439. if (!user_access('create chado_library content', $account)) {
  440. return NODE_ACCESS_DENY;
  441. }
  442. return NODE_ACCESS_ALLOW;
  443. }
  444. if ($op == 'update') {
  445. if (!user_access('edit chado_library content', $account)) {
  446. return NODE_ACCESS_DENY;
  447. }
  448. }
  449. if ($op == 'delete') {
  450. if (!user_access('delete chado_library content', $account)) {
  451. return NODE_ACCESS_DENY;
  452. }
  453. }
  454. if ($op == 'view') {
  455. if (!user_access('access chado_library content', $account)) {
  456. return NODE_ACCESS_DENY;
  457. }
  458. }
  459. return NODE_ACCESS_IGNORE;
  460. }
  461. }
  462. /**
  463. * Implements hook_node_view(). Acts on all content types
  464. *
  465. * @ingroup tripal_library
  466. */
  467. function tripal_library_node_view($node, $view_mode, $langcode) {
  468. switch ($node->type) {
  469. case 'chado_library':
  470. if ($view_mode == 'full') {
  471. $node->content['tripal_library_base'] = array(
  472. '#theme' => 'tripal_library_base',
  473. '#node' => $node,
  474. '#tripal_toc_id' => 'base',
  475. '#tripal_toc_title' => 'Overview',
  476. '#weight' => -100,
  477. );
  478. $node->content['tripal_library_features'] = array(
  479. '#theme' => 'tripal_library_features',
  480. '#node' => $node,
  481. '#tripal_toc_id' => 'features',
  482. '#tripal_toc_title' => 'Features',
  483. );
  484. $node->content['tripal_library_properties'] = array(
  485. '#theme' => 'tripal_library_properties',
  486. '#node' => $node,
  487. '#tripal_toc_id' => 'properties',
  488. '#tripal_toc_title' => 'Properties',
  489. );
  490. $node->content['tripal_library_publications'] = array(
  491. '#theme' => 'tripal_library_publications',
  492. '#node' => $node,
  493. '#tripal_toc_id' => 'publications',
  494. '#tripal_toc_title' => 'Publications',
  495. );
  496. $node->content['tripal_library_references'] = array(
  497. '#theme' => 'tripal_library_references',
  498. '#node' => $node,
  499. '#tripal_toc_id' => 'references',
  500. '#tripal_toc_title' => 'Cross References',
  501. );
  502. $node->content['tripal_library_synonyms'] = array(
  503. '#theme' => 'tripal_library_synonyms',
  504. '#node' => $node,
  505. '#tripal_toc_id' => 'synonyms',
  506. '#tripal_toc_title' => 'Synonyms',
  507. );
  508. $node->content['tripal_library_terms'] = array(
  509. '#theme' => 'tripal_library_terms',
  510. '#node' => $node,
  511. '#tripal_toc_id' => 'terms',
  512. '#tripal_toc_title' => 'Annotated Terms',
  513. );
  514. }
  515. if ($view_mode == 'teaser') {
  516. $node->content['tripal_library_teaser'] = array(
  517. '#theme' => 'tripal_library_teaser',
  518. '#node' => $node,
  519. );
  520. }
  521. break;
  522. case 'chado_organism':
  523. if ($view_mode == 'full') {
  524. $node->content['tripal_organism_libraries'] = array(
  525. '#theme' => 'tripal_organism_libraries',
  526. '#node' => $node,
  527. '#tripal_toc_id' => 'libraries',
  528. '#tripal_toc_title' => 'Libraries',
  529. );
  530. }
  531. break;
  532. case 'chado_feature':
  533. if ($view_mode == 'full') {
  534. $node->content['tripal_feature_libraries'] = array(
  535. '#theme' => 'tripal_feature_libraries',
  536. '#node' => $node,
  537. '#tripal_toc_id' => 'libraries',
  538. '#tripal_toc_title' => 'Libraries',
  539. );
  540. }
  541. break;
  542. }
  543. }
  544. /**
  545. * Implements hook_node_presave(). Acts on all node content types.
  546. *
  547. * @ingroup tripal_library
  548. */
  549. function tripal_library_node_presave($node) {
  550. switch ($node->type) {
  551. // This step is for setting the title for the Drupal node. This title
  552. // is permanent and thus is created to be unique. Title changes provided
  553. // by tokens are generated on the fly dynamically, but the node title
  554. // seen in the content listing needs to be set here. Do not call
  555. // the chado_get_node_title() function here to set the title as the node
  556. // object isn't properly filled out and the function will fail.
  557. case 'chado_library':
  558. // for a form submission the 'libraryname' field will be set,
  559. // for a sync, we must pull from the library object
  560. if (property_exists($node, 'libraryname')) {
  561. // set the title
  562. $node->title = $node->libraryname;
  563. }
  564. else if (property_exists($node, 'library')) {
  565. $node->title = $node->library->name;
  566. }
  567. break;
  568. }
  569. }
  570. /**
  571. * Implements hook_node_insert().
  572. * Acts on all content types.
  573. *
  574. * @ingroup tripal_library
  575. */
  576. function tripal_library_node_insert($node) {
  577. switch ($node->type) {
  578. case 'chado_library':
  579. $library_id = chado_get_id_from_nid('library', $node->nid);
  580. $values = array('library_id' => $library_id);
  581. $library = chado_generate_var('library', $values);
  582. $library = chado_expand_var($library, 'field', 'library.uniquename');
  583. $node->library = $library;
  584. // Now get the title
  585. $node->title = chado_get_node_title($node);
  586. // Now use the API to set the path.
  587. chado_set_node_url($node);
  588. break;
  589. }
  590. }
  591. /**
  592. * Implements hook_node_update().
  593. * Acts on all content types.
  594. *
  595. * @ingroup tripal_library
  596. */
  597. function tripal_library_node_update($node) {
  598. switch ($node->type) {
  599. case 'chado_library':
  600. // Now get the title
  601. $node->title = chado_get_node_title($node);
  602. // Now use the API to set the path.
  603. chado_set_node_url($node);
  604. break;
  605. }
  606. }
  607. /**
  608. * Implements [content_type]_chado_node_default_title_format().
  609. *
  610. * Defines a default title format for the Chado Node API to set the titles on
  611. * Chado library nodes based on chado fields.
  612. */
  613. function chado_library_chado_node_default_title_format() {
  614. return '[library.name], [library.uniquename] ([library.type_id>cvterm.name])';
  615. }
  616. /**
  617. * Implements hook_chado_node_default_url_format().
  618. *
  619. * Designates a default URL format for library nodes.
  620. */
  621. function chado_library_chado_node_default_url_format() {
  622. return '/library/[library.organism_id>organism.genus]/[library.organism_id>organism.species]/[library.type_id>cvterm.name]/[library.uniquename]';
  623. }