tripal_entities.admin.inc 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <?php
  2. /**
  3. * Provide a data listing for tripal entites (ie: biological data).
  4. *
  5. * This function is a callback in a menu item which is set in the
  6. * TripalEntityUIController class.
  7. */
  8. function tripal_entities_content_view() {
  9. // Retrieve our data listing form and render it.
  10. $form = drupal_get_form('tripal_entities_content_overview_form');
  11. $output = drupal_render($form);
  12. // Set the breadcrumb.
  13. $breadcrumb = array();
  14. $breadcrumb[] = l('Home', '<front>');
  15. $breadcrumb[] = l('Administration', 'admin');
  16. drupal_set_breadcrumb($breadcrumb);
  17. return $output;
  18. }
  19. /**
  20. * Display a listing of Tripal entities.
  21. *
  22. * @TODO Filters and bulk operations needed to be added to this form.
  23. *
  24. * @param array $form
  25. * @param array $form_state
  26. * @return
  27. * A form array describing this listing to the Form API.
  28. */
  29. function tripal_entities_content_overview_form($form, &$form_state) {
  30. // Set the title to be informative (defaults to content for some reason).
  31. drupal_set_title('Tripal Content');
  32. // Retrieve a pages list of all tripal entitles (ie: biological data).
  33. // This will return the 25 most recently created entities.
  34. $entities = db_select('tripal_entity', 'td')
  35. ->fields('td')
  36. ->orderBy('created', 'DESC')
  37. ->range(0,25)
  38. ->execute();
  39. $headers = array('Title', 'Vocabulary', 'Term', 'Author', 'Status', 'Updated', 'Operations');
  40. $rows = array();
  41. // For each entity retrieved add a row to the data listing.
  42. while ($entity = $entities->fetchObject()) {
  43. // Get the term
  44. $term = entity_load('TripalTerm', array('id' => $entity->term_id));
  45. $term = reset($term);
  46. $vocab = entity_load('TripalVocab', array('id' => $term->vocab_id));
  47. $vocab = reset($vocab);
  48. // Retrieve details about the user who created this data.
  49. $author = user_load($entity->uid);
  50. // Add information to the table.
  51. $rows[] = array(
  52. l($entity->title, 'bio-data/' . $entity->id),
  53. $vocab->namespace,
  54. $term->name,
  55. l($author->name, 'user/' . $entity->uid),
  56. $entity->status == 1 ? 'published' : 'unpublished',
  57. format_date($entity->changed, 'short'),
  58. l('edit', 'bio-data/' . $entity->id . '/edit') . '&nbsp;&nbsp;' .
  59. l('delete', 'bio-data/' . $entity->id . '/delete')
  60. );
  61. }
  62. // If there are no entites created yet then add a message to the table to
  63. // provide guidance to administrators.
  64. if (empty($rows)) {
  65. $rows[] = array(
  66. array(
  67. 'data' => t('No Tripal content available.'),
  68. 'colspan' => 7
  69. )
  70. );
  71. }
  72. // Render the data listing.
  73. $table_vars = array(
  74. 'header' => $headers,
  75. 'rows' => $rows,
  76. 'attributes' => array(),
  77. 'sticky' => TRUE,
  78. 'caption' => '',
  79. 'colgroups' => array(),
  80. 'empty' => '',
  81. );
  82. $form['results'] = array(
  83. '#type' => 'markup',
  84. '#markup' => theme('table', $table_vars),
  85. );
  86. return $form;
  87. }
  88. /**
  89. * Form for creating tripal data types.
  90. *
  91. * This form is available on the menu at Admin >> Structure >> Biological Data
  92. * Types. It requires that a module implmennt the vocabulary storage. Tripal
  93. * knows which vocabulary storage methods are available when a module
  94. * implements the hook_vocab_storage_info() hook.
  95. *
  96. */
  97. function tripal_entities_admin_add_type_form($form, &$form_state) {
  98. // TODO: we need some sort of administrative interface that lets the user
  99. // switch to the desired vocabulary type. For now, we'll just use the
  100. // first one in the list.
  101. $stores = module_invoke_all('vocab_storage_info');
  102. if (is_array($stores) and count($stores) > 0) {
  103. $keys = array_keys($stores);
  104. $module = $stores[$keys[0]]['module'];
  105. $function = $module . '_vocab_select_term_form';
  106. if (function_exists($function)) {
  107. $form = $function($form, $form_state);
  108. }
  109. }
  110. else {
  111. tripal_set_message('A storage backend is not enabled for managing
  112. the vocabulary terms used to create content. Please enable
  113. a module that supports storage of vocabualary terms (e.g. tripal_chado)
  114. and return to create new Tripal content types.', TRIPAL_NOTICE);
  115. }
  116. return $form;
  117. }
  118. /**
  119. * Implements hook_validate() for the tripal_entities_admin_add_type_form.
  120. *
  121. */
  122. function tripal_entities_admin_add_type_form_validate($form, &$form_state) {
  123. // TODO: we need some sort of administrative interface that lets the user
  124. // switch to the desired vocabulary type. For now, we'll just use the
  125. // first one in the list.
  126. $stores = module_invoke_all('vocab_storage_info');
  127. if (is_array($stores) and count($stores) > 0) {
  128. $keys = array_keys($stores);
  129. $module = $stores[$keys[0]]['module'];
  130. $function = $module . '_vocab_select_term_form_validate';
  131. if (function_exists($function)) {
  132. $function($form, $form_state);
  133. }
  134. }
  135. }
  136. /**
  137. * Implements hook_submit() for the tripal_entities_admin_add_type_form.
  138. *
  139. * The storage backend must set the
  140. *
  141. */
  142. function tripal_entities_admin_add_type_form_submit($form, &$form_state) {
  143. $namespace = '';
  144. $term_id = '';
  145. if (array_key_exists('storage', $form_state)) {
  146. $storage = $form_state['storage'];
  147. $namespace = array_key_exists('namespace', $storage) ? $storage['namespace'] : '';
  148. $term_id = array_key_exists('term_id', $storage) ? $storage['term_id'] : '';
  149. $term_name = array_key_exists('term_name', $storage) ? $storage['term_name'] : '';
  150. // Before we try to add this type, check to see if it already exists
  151. // as a bundle.
  152. $term = tripal_load_term_entity($namespace, $term_id);
  153. if (!$term) {
  154. $error = '';
  155. $success = tripal_create_bundle($namespace, $term_id, $term_name, $error);
  156. if (!$success) {
  157. drupal_set_message($error, 'error');
  158. $form_state['redirect'] = "admin/structure/bio-data";
  159. }
  160. else {
  161. drupal_set_message('New biological data type created. Fields are added automatically to this type.');
  162. $form_state['redirect'] = "admin/structure/bio-data";
  163. }
  164. }
  165. else {
  166. drupal_set_message('This type already exists.', 'warning');
  167. }
  168. }
  169. }