tripal_library.chado_node.inc

  1. 2.x tripal_library/includes/tripal_library.chado_node.inc
  2. 3.x legacy/tripal_library/includes/tripal_library.chado_node.inc

Implements the library node content type

File

legacy/tripal_library/includes/tripal_library.chado_node.inc
View source
  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_legacy_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_legacy_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/loaders/chado_vocabs/chado_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. // The name of the _dbxref table.
  190. 'linking_table' => 'library_dbxref',
  191. // The name of the key in your base chado table.
  192. 'base_foreign_key' => 'library_id',
  193. // The value of library_id for this record.
  194. 'base_key_value' => $library_id
  195. );
  196. // Adds the form elements to your current form
  197. chado_add_node_form_dbxrefs($form, $form_state, $details);
  198. return $form;
  199. }
  200. /**
  201. * Implements hook_validate().
  202. *
  203. * Validates submission of form when adding or updating a library node
  204. *
  205. * @ingroup tripal_legacy_library
  206. */
  207. function chado_library_validate($node, $form, &$form_state) {
  208. // We only want to validate when the node is saved.
  209. // Since this validate can be called on AJAX and Deletion of the node
  210. // we need to make this check to ensure queries are not executed
  211. // without the proper values.
  212. if(property_exists($node, "op") and $node->op != 'Save') {
  213. return;
  214. }
  215. // we are syncing if we do not have a node ID but we do have a featuremap_id. We don't
  216. // need to validate during syncing so just skip it.
  217. if (!property_exists($node, 'nid') and property_exists($node, 'library_id') and $node->library_id != 0) {
  218. return;
  219. }
  220. // trim white space from text fields
  221. $node->libraryname = property_exists($node, 'libraryname') ? trim($node->libraryname) : '';
  222. $node->uniquename = property_exists($node, 'uniquename') ? trim($node->uniquename) : '';
  223. $lib = 0;
  224. // check to make sure the unique name on the library is unique
  225. // before we try to insert into chado.
  226. if (property_exists($node, 'library_id')) {
  227. $sql = "
  228. SELECT *
  229. FROM {library}
  230. WHERE uniquename = :uname AND NOT library_id = :library_id
  231. ";
  232. $lib = chado_query($sql, array(':uname' => $node->uniquename, ':library_id' => $node->library_id))->fetchObject();
  233. }
  234. else {
  235. $sql = "SELECT * FROM {library} WHERE uniquename = :uname";
  236. $lib = chado_query($sql, array(':uname' => $node->uniquename))->fetchObject();
  237. }
  238. if ($lib) {
  239. form_set_error('uniquename', t('The unique library name already exists. Please choose another'));
  240. }
  241. }
  242. /**
  243. * Implements hook_insert().
  244. *
  245. * When a new chado_library node is created we also need to add information
  246. * to our chado_library table. This function is called on insert of a new node
  247. * of type 'chado_library' and inserts the necessary information.
  248. *
  249. * @ingroup tripal_legacy_library
  250. */
  251. function chado_library_insert($node) {
  252. $library_id = '';
  253. // if there is an library_id in the $node object then this must be a sync so
  254. // we can skip adding the library as it is already there, although
  255. // we do need to proceed with insertion into the chado/drupal linking table.
  256. if (!property_exists($node, 'library_id')) {
  257. $node->libraryname = trim($node->libraryname);
  258. $node->uniquename = trim($node->uniquename);
  259. $node->description = trim($node->description['value']);
  260. $values = array(
  261. 'name' => $node->libraryname,
  262. 'uniquename' => $node->uniquename,
  263. 'organism_id' => $node->organism_id,
  264. 'type_id' => $node->library_type,
  265. );
  266. $library = chado_insert_record('library', $values);
  267. if (!$library) {
  268. drupal_set_message(t('Unable to add library.', 'warning'));
  269. watchdog('tripal_library', 'Insert library: Unable to create library where values: %values',
  270. array('%values' => print_r($values, TRUE)), WATCHDOG_ERROR);
  271. return;
  272. }
  273. $library_id = $library['library_id'];
  274. // * Properties Form *
  275. // add the description property
  276. $properties = chado_retrieve_node_form_properties($node);
  277. $descrip_id = tripal_get_cvterm(array(
  278. 'name' => 'Library Description',
  279. 'cv_id' => array('name' => 'library_property')
  280. ));
  281. $properties[$descrip_id->cvterm_id][0] = $node->description;
  282. $details = array(
  283. 'property_table' => 'libraryprop', // the name of the prop table
  284. 'base_table' => 'library', // the name of your chado base table
  285. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  286. 'foreignkey_value' => $library_id // the value of the library_id key
  287. );
  288. chado_update_node_form_properties($node, $details, $properties);
  289. // * Additional DBxrefs Form *
  290. $details = array(
  291. 'linking_table' => 'library_dbxref', // the name of your _dbxref table
  292. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  293. 'foreignkey_value' => $library_id // the value of the library_id key
  294. );
  295. chado_update_node_form_dbxrefs($node, $details);
  296. }
  297. else {
  298. $library_id = $node->library_id;
  299. }
  300. // Make sure the entry for this library doesn't already exist in the
  301. // chado_library table if it doesn't exist then we want to add it.
  302. $check_org_id = chado_get_id_from_nid('library', $node->nid);
  303. if (!$check_org_id) {
  304. $record = new stdClass();
  305. $record->nid = $node->nid;
  306. $record->vid = $node->vid;
  307. $record->library_id = $library_id;
  308. drupal_write_record('chado_library', $record);
  309. }
  310. }
  311. /**
  312. * Implements hook_update().
  313. *
  314. * @ingroup tripal_legacy_library
  315. */
  316. function chado_library_update($node) {
  317. $node->libraryname = trim($node->libraryname);
  318. $node->uniquename = trim($node->uniquename);
  319. $node->description = trim($node->description['value']);
  320. // update the library record
  321. $library_id = chado_get_id_from_nid('library', $node->nid);
  322. $match = array(
  323. 'library_id' => $library_id,
  324. );
  325. $values = array(
  326. 'name' => $node->libraryname,
  327. 'uniquename' => $node->uniquename,
  328. 'organism_id' => $node->organism_id,
  329. 'type_id' => $node->library_type,
  330. );
  331. $status = chado_update_record('library', $match, $values);
  332. if (!$status) {
  333. drupal_set_message(t('Unable to update library.', 'warning'));
  334. watchdog('tripal_library', 'Update library: Unable to update library where values: %values',
  335. array('%values' => print_r($values, TRUE)), WATCHDOG_ERROR);
  336. }
  337. // * Properties Form *
  338. // add the description property
  339. $properties = chado_retrieve_node_form_properties($node);
  340. $descrip_id = tripal_get_cvterm(array(
  341. 'name' => 'Library Description',
  342. 'cv_id' => array('name' => 'library_property')
  343. ));
  344. $properties[$descrip_id->cvterm_id][0] = $node->description;
  345. $details = array(
  346. 'property_table' => 'libraryprop', // the name of the prop table
  347. 'base_table' => 'library', // the name of your chado base table
  348. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  349. 'foreignkey_value' => $library_id // the value of the library_id key
  350. );
  351. chado_update_node_form_properties($node, $details, $properties);
  352. // * Additional DBxrefs Form *
  353. $details = array(
  354. 'linking_table' => 'library_dbxref', // the name of your _dbxref table
  355. 'foreignkey_name' => 'library_id', // the name of the key in your base table
  356. 'foreignkey_value' => $library_id // the value of the library_id key
  357. );
  358. chado_update_node_form_dbxrefs($node, $details);
  359. }
  360. /**
  361. * Implements hook_load().
  362. *
  363. * When a node is requested by the user this function is called to allow us
  364. * to add auxiliary data to the node object.
  365. *
  366. * @ingroup tripal_legacy_library
  367. */
  368. function chado_library_load($nodes) {
  369. foreach ($nodes as $nid => $node) {
  370. // get the feature details from chado
  371. $library_id = chado_get_id_from_nid('library', $node->nid);
  372. // if the nid does not have a matching record then skip this node.
  373. // this can happen with orphaned nodes.
  374. if (!$library_id) {
  375. continue;
  376. }
  377. $values = array('library_id' => $library_id);
  378. $library = chado_generate_var('library', $values);
  379. // the uniquename field is a text field so we need to expand it
  380. $library = chado_expand_var($library, 'field', 'library.uniquename');
  381. $nodes[$nid]->library = $library;
  382. // Now get the title
  383. $node->title = chado_get_node_title($node);
  384. }
  385. }
  386. /**
  387. * Implements hook_delete().
  388. *
  389. * Delete data from drupal and chado databases when a node is deleted
  390. *
  391. * @ingroup tripal_legacy_library
  392. */
  393. function chado_library_delete(&$node) {
  394. $library_id = chado_get_id_from_nid('library', $node->nid);
  395. // if we don't have a library id for this node then this isn't a node of
  396. // type chado_library or the entry in the chado_library table was lost.
  397. if (!$library_id) {
  398. return;
  399. }
  400. // Remove data from {chado_library}, {node} and {node_revisions} tables of
  401. // drupal database
  402. $sql_del = "DELETE FROM {chado_library} WHERE nid = :nid AND vid = :vid";
  403. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  404. $sql_del = "DELETE FROM {node_revision} WHERE nid = :nid AND vid = :vid";
  405. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  406. $sql_del = "DELETE FROM {node} WHERE nid = :nid AND vid = :vid";
  407. db_query($sql_del, array(':nid' => $node->nid, ':vid' => $node->vid));
  408. // Remove data from library and libraryprop tables of chado database as well
  409. chado_query("DELETE FROM {libraryprop} WHERE library_id = :library_id", array(':library_id' => $library_id));
  410. chado_query("DELETE FROM {library} WHERE library_id = :library_id", array(':library_id' => $library_id));
  411. }
  412. /**
  413. * Implement hook_node_access().
  414. *
  415. * This hook allows node modules to limit access to the node types they define.
  416. *
  417. * @param $node
  418. * The node on which the operation is to be performed, or, if it does not yet exist, the
  419. * type of node to be created
  420. *
  421. * @param $op
  422. * The operation to be performed
  423. *
  424. * @param $account
  425. * A user object representing the user for whom the operation is to be performed
  426. *
  427. * @return
  428. * If the permission for the specified operation is not set then return FALSE. If the
  429. * permission is set then return NULL as this allows other modules to disable
  430. * access. The only exception is when the $op == 'create'. We will always
  431. * return TRUE if the permission is set.
  432. *
  433. * @ingroup tripal_legacy_library
  434. */
  435. function tripal_library_node_access($node, $op, $account) {
  436. $node_type = $node;
  437. if (is_object($node)) {
  438. $node_type = $node->type;
  439. }
  440. if($node_type == 'chado_library') {
  441. if ($op == 'create') {
  442. if (!user_access('create chado_library content', $account)) {
  443. return NODE_ACCESS_DENY;
  444. }
  445. return NODE_ACCESS_ALLOW;
  446. }
  447. if ($op == 'update') {
  448. if (!user_access('edit chado_library content', $account)) {
  449. return NODE_ACCESS_DENY;
  450. }
  451. }
  452. if ($op == 'delete') {
  453. if (!user_access('delete chado_library content', $account)) {
  454. return NODE_ACCESS_DENY;
  455. }
  456. }
  457. if ($op == 'view') {
  458. if (!user_access('access chado_library content', $account)) {
  459. return NODE_ACCESS_DENY;
  460. }
  461. }
  462. return NODE_ACCESS_IGNORE;
  463. }
  464. }
  465. /**
  466. * Implements hook_node_view(). Acts on all content types
  467. *
  468. * @ingroup tripal_legacy_library
  469. */
  470. function tripal_library_node_view($node, $view_mode, $langcode) {
  471. switch ($node->type) {
  472. case 'chado_library':
  473. if ($view_mode == 'full') {
  474. $node->content['tripal_library_base'] = array(
  475. '#theme' => 'tripal_library_base',
  476. '#node' => $node,
  477. '#tripal_toc_id' => 'base',
  478. '#tripal_toc_title' => 'Overview',
  479. '#weight' => -100,
  480. );
  481. $node->content['tripal_library_features'] = array(
  482. '#theme' => 'tripal_library_features',
  483. '#node' => $node,
  484. '#tripal_toc_id' => 'features',
  485. '#tripal_toc_title' => 'Features',
  486. );
  487. $node->content['tripal_library_properties'] = array(
  488. '#theme' => 'tripal_library_properties',
  489. '#node' => $node,
  490. '#tripal_toc_id' => 'properties',
  491. '#tripal_toc_title' => 'Properties',
  492. );
  493. $node->content['tripal_library_publications'] = array(
  494. '#theme' => 'tripal_library_publications',
  495. '#node' => $node,
  496. '#tripal_toc_id' => 'publications',
  497. '#tripal_toc_title' => 'Publications',
  498. );
  499. $node->content['tripal_library_references'] = array(
  500. '#theme' => 'tripal_library_references',
  501. '#node' => $node,
  502. '#tripal_toc_id' => 'references',
  503. '#tripal_toc_title' => 'Cross References',
  504. );
  505. $node->content['tripal_library_synonyms'] = array(
  506. '#theme' => 'tripal_library_synonyms',
  507. '#node' => $node,
  508. '#tripal_toc_id' => 'synonyms',
  509. '#tripal_toc_title' => 'Synonyms',
  510. );
  511. $node->content['tripal_library_terms'] = array(
  512. '#theme' => 'tripal_library_terms',
  513. '#node' => $node,
  514. '#tripal_toc_id' => 'terms',
  515. '#tripal_toc_title' => 'Annotated Terms',
  516. );
  517. }
  518. if ($view_mode == 'teaser') {
  519. $node->content['tripal_library_teaser'] = array(
  520. '#theme' => 'tripal_library_teaser',
  521. '#node' => $node,
  522. );
  523. }
  524. break;
  525. case 'chado_organism':
  526. if ($view_mode == 'full') {
  527. $node->content['tripal_organism_libraries'] = array(
  528. '#theme' => 'tripal_organism_libraries',
  529. '#node' => $node,
  530. '#tripal_toc_id' => 'libraries',
  531. '#tripal_toc_title' => 'Libraries',
  532. );
  533. }
  534. break;
  535. case 'chado_feature':
  536. if ($view_mode == 'full') {
  537. $node->content['tripal_feature_libraries'] = array(
  538. '#theme' => 'tripal_feature_libraries',
  539. '#node' => $node,
  540. '#tripal_toc_id' => 'libraries',
  541. '#tripal_toc_title' => 'Libraries',
  542. );
  543. }
  544. break;
  545. }
  546. }
  547. /**
  548. * Implements hook_node_presave(). Acts on all node content types.
  549. *
  550. * @ingroup tripal_legacy_library
  551. */
  552. function tripal_library_node_presave($node) {
  553. switch ($node->type) {
  554. // This step is for setting the title for the Drupal node. This title
  555. // is permanent and thus is created to be unique. Title changes provided
  556. // by tokens are generated on the fly dynamically, but the node title
  557. // seen in the content listing needs to be set here. Do not call
  558. // the chado_get_node_title() function here to set the title as the node
  559. // object isn't properly filled out and the function will fail.
  560. case 'chado_library':
  561. // for a form submission the 'libraryname' field will be set,
  562. // for a sync, we must pull from the library object
  563. if (property_exists($node, 'libraryname')) {
  564. // set the title
  565. $node->title = $node->libraryname;
  566. }
  567. else if (property_exists($node, 'library')) {
  568. $node->title = $node->library->name;
  569. }
  570. break;
  571. }
  572. }
  573. /**
  574. * Implements hook_node_insert().
  575. * Acts on all content types.
  576. *
  577. * @ingroup tripal_legacy_library
  578. */
  579. function tripal_library_node_insert($node) {
  580. switch ($node->type) {
  581. case 'chado_library':
  582. $library_id = chado_get_id_from_nid('library', $node->nid);
  583. $values = array('library_id' => $library_id);
  584. $library = chado_generate_var('library', $values);
  585. $library = chado_expand_var($library, 'field', 'library.uniquename');
  586. $node->library = $library;
  587. // Now get the title
  588. $node->title = chado_get_node_title($node);
  589. // Now use the API to set the path.
  590. chado_set_node_url($node);
  591. break;
  592. }
  593. }
  594. /**
  595. * Implements hook_node_update().
  596. * Acts on all content types.
  597. *
  598. * @ingroup tripal_legacy_library
  599. */
  600. function tripal_library_node_update($node) {
  601. switch ($node->type) {
  602. case 'chado_library':
  603. // Now get the title
  604. $node->title = chado_get_node_title($node);
  605. // Now use the API to set the path.
  606. chado_set_node_url($node);
  607. break;
  608. }
  609. }
  610. /**
  611. * Implements [content_type]_chado_node_default_title_format().
  612. *
  613. * Defines a default title format for the Chado Node API to set the titles on
  614. * Chado library nodes based on chado fields.
  615. */
  616. function chado_library_chado_node_default_title_format() {
  617. return '[library.name], [library.uniquename] ([library.type_id>cvterm.name])';
  618. }
  619. /**
  620. * Implements hook_chado_node_default_url_format().
  621. *
  622. * Designates a default URL format for library nodes.
  623. */
  624. function chado_library_chado_node_default_url_format() {
  625. return '/library/[library.organism_id>organism.genus]/[library.organism_id>organism.species]/[library.type_id>cvterm.name]/[library.uniquename]';
  626. }