tripal_chado.entity.inc 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. <?php
  2. /**
  3. * Implements hook_entity_create().
  4. *
  5. * This hook is called when brand new entities are created, but
  6. * they are not loaded so the hook_entity_load() is not yet called. We
  7. * can use this hook to add properties to the entity before saving.
  8. */
  9. function tripal_chado_entity_create(&$entity, $type) {
  10. if ($type == 'TripalEntity') {
  11. // Set some defaults on vars needed by this module.
  12. if (!property_exists($entity, 'chado_table')) {
  13. $entity->chado_table = NULL;
  14. $entity->chado_column = NULL;
  15. $entity->chado_linker = NULL;
  16. // Add in the Chado table information for this entity type.
  17. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  18. if ($bundle->data_table) {
  19. $entity->chado_table = $bundle->data_table;
  20. $entity->chado_column = $bundle->type_column;
  21. $entity->chado_linker = $bundle->type_linker_table;
  22. }
  23. }
  24. if (!property_exists($entity, 'chado_record')) {
  25. $entity->chado_record = NULL;
  26. $entity->chado_record_id = NULL;
  27. }
  28. }
  29. }
  30. /**
  31. * Implements hook_entity_presave().
  32. */
  33. function tripal_chado_entity_presave($entity, $type) {
  34. }
  35. /**
  36. * Implements hook_entity_postsave().
  37. */
  38. function tripal_chado_entity_postsave($entity, $type) {
  39. }
  40. /**
  41. * Implements hook_entity_load().
  42. */
  43. function tripal_chado_entity_load($entities, $type) {
  44. if ($type == 'TripalBundle') {
  45. foreach ($entities as $bundle) {
  46. // We want to add in the record ID to the entity.
  47. if (property_exists($bundle, 'id')) {
  48. $chado_bundle = db_select('chado_bundle', 'cb')
  49. ->fields('cb')
  50. ->condition('cb.bundle_id', $bundle->id)
  51. ->execute()
  52. ->fetchObject();
  53. if ($chado_bundle) {
  54. $bundle->data_table = $chado_bundle->data_table;
  55. $bundle->type_linker_table = $chado_bundle->type_linker_table;
  56. $bundle->type_column = $chado_bundle->type_column;
  57. $bundle->type_id = $chado_bundle->type_id;
  58. $bundle->type_value = $chado_bundle->type_value;
  59. }
  60. }
  61. }
  62. }
  63. if ($type == 'TripalEntity') {
  64. foreach ($entities as $entity) {
  65. // We want to add in the record ID to the entity.
  66. if (property_exists($entity, 'id')) {
  67. // Set some defaults on vars needed by this module.
  68. $entity->chado_table = NULL;
  69. $entity->chado_column = NULL;
  70. $entity->chado_record = NULL;
  71. $entity->chado_record_id = NULL;
  72. // Add in the Chado table information for this entity type.
  73. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  74. if (!$bundle) {
  75. continue;
  76. }
  77. // TODO: this may need fixing. The chado_column may not always
  78. // be the type_id of the base table. Is it expected to be so here?
  79. $entity->chado_table = $bundle->data_table;
  80. $entity->chado_column = $bundle->type_column;
  81. $chado_entity_table = chado_get_bundle_entity_table($bundle);
  82. $chado_entity = db_select($chado_entity_table, 'ce')
  83. ->fields('ce')
  84. ->condition('ce.entity_id', $entity->id)
  85. ->execute()
  86. ->fetchObject();
  87. if ($chado_entity) {
  88. $schema = chado_get_schema($entity->chado_table);
  89. $record = chado_generate_var($entity->chado_table, array($schema['primary key'][0] => $chado_entity->record_id));
  90. $entity->chado_record = $record;
  91. $entity->chado_record_id = $chado_entity->record_id;
  92. }
  93. }
  94. }
  95. }
  96. }
  97. /**
  98. *
  99. * Implements hook_entity_insert().
  100. */
  101. function tripal_chado_entity_insert($entity, $type) {
  102. }
  103. /**
  104. *
  105. * Implements hook_entity_update().
  106. */
  107. function tripal_chado_entity_update($entity, $type) {
  108. }
  109. /**
  110. *
  111. * Implements hook_entity_delete().
  112. */
  113. function tripal_chado_entity_delete($entity, $type) {
  114. if ($type == 'TripalEntity') {
  115. }
  116. }
  117. /**
  118. * Implements hook_tripal_default_title_format().
  119. *
  120. * Overrides the default titles.
  121. */
  122. function tripal_chado_tripal_default_title_format($bundle, $available_tokens) {
  123. $format = array();
  124. $table = $bundle->data_table;
  125. if ($table == 'organism') {
  126. if (chado_get_version() <= '1.2') {
  127. $format[] = array(
  128. 'format' => '[taxrank__genus] [taxrank__species]',
  129. 'weight' => -5
  130. );
  131. }
  132. else {
  133. $format[] = array(
  134. 'format' => '[taxrank__genus] [taxrank__species] [taxrank__infraspecies]',
  135. 'weight' => -5
  136. );
  137. }
  138. }
  139. if ($table == 'analysis') {
  140. $format[] = array(
  141. 'format' => '[schema__name]',
  142. 'weight' => -5
  143. );
  144. }
  145. if ($table == 'feature') {
  146. $format[] = array(
  147. 'format' => '[schema__name]',
  148. 'weight' => -5
  149. );
  150. }
  151. if ($table == 'featuremap') {
  152. $format[] = array(
  153. 'format' => '[schema__name]',
  154. 'weight' => -5
  155. );
  156. }
  157. if ($table == 'stock') {
  158. $format[] = array(
  159. 'format' => '[schema__name]',
  160. 'weight' => -5
  161. );
  162. }
  163. if ($table == 'pub') {
  164. $format[] = array(
  165. 'format' => '[tpub__title]',
  166. 'weight' => -5,
  167. );
  168. }
  169. if ($table == 'cvterm') {
  170. $format[] = array(
  171. 'format' => '[schema__name]',
  172. 'weight' => -5,
  173. );
  174. }
  175. if ($table == 'project') {
  176. $format[] = array(
  177. 'format' => '[schema__name]',
  178. 'weight' => -5,
  179. );
  180. }
  181. if ($table == 'contact') {
  182. $format[] = array(
  183. 'format' => '[schema__name]',
  184. 'weight' => -5,
  185. );
  186. }
  187. return $format;
  188. }
  189. /**
  190. * Implements hook_entity_view().
  191. */
  192. function tripal_chado_entity_view($entity, $type, $view_mode, $langcode) {
  193. // If this entity is a TripalEntity and is a full view, then
  194. // we want to support the legacy view, but only if the legacy
  195. // module is enabled (the functions exist).
  196. if ($type =='TripalEntity') {
  197. // Use the generic template to render the fields
  198. if ($view_mode == 'full') {
  199. // Get the Chado table for this data type.
  200. $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
  201. $chado_table = $bundle->data_table;
  202. $chado_field = $bundle->type_column;
  203. // Get the list of templates that should be used for entities and generatte
  204. // the key in the array for this entity type (using the chado table the
  205. // entity maps to).
  206. $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates', array());
  207. $legacy_template = 'legacy_template--chado_' . $chado_table;
  208. // If the site admin has indicated that thhis entity type should use
  209. // a legacy tmplate then prepare the entity and content to fake a
  210. // node.
  211. if (key_exists($legacy_template, $enabled_templates) && $enabled_templates[$legacy_template]) {
  212. // Remove the fields added by the chado_field_storage.
  213. $fields = field_info_fields();
  214. foreach($fields as $field) {
  215. if ($field['storage']['type'] == 'field_chado_storage' or
  216. $field['storage']['type'] == 'tripal_no_storage') {
  217. $field_name = $field['field_name'];
  218. if (property_exists($entity, $field_name)) {
  219. $entity->$field_name = NULL;
  220. unset($entity->content[$field_name]);
  221. }
  222. }
  223. }
  224. // Make the entity look like a node.
  225. $entity->type = 'chado_' . $chado_table;
  226. $entity->$chado_table = $entity->chado_record;
  227. // Add any node specific fields to the entity to fake the node.
  228. $node_schema = drupal_get_schema('node');
  229. foreach ($node_schema['fields'] as $field_name => $details) {
  230. if (!property_exists($entity, $field_name)) {
  231. $entity->$field_name = '';
  232. if (array_key_exists('default', $details)) {
  233. $entity->$field_name = $details['default'];
  234. }
  235. }
  236. }
  237. // Now call the module's node_view hook to add additional
  238. // content to our 'fake' entity node.
  239. $modules = module_list();
  240. foreach ($modules as $mname => $details) {
  241. $function_name = $mname . '_node_view';
  242. if (function_exists($function_name)) {
  243. $function_name($entity, $view_mode, $langcode);
  244. }
  245. }
  246. }
  247. }
  248. }
  249. }
  250. /**
  251. * Implements hook_entity_view_alter().
  252. *
  253. * This function is used to support legacy Tripal v2 templates
  254. * for use with Tripal v3 entities.
  255. */
  256. function tripal_chado_entity_view_alter(&$build) {
  257. // For the legacy support, we need to make sure the TOC
  258. // is built.
  259. if ($build['#entity_type'] == 'TripalEntity') {
  260. $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates', array());
  261. $entity = $build['#entity'];
  262. $legacy_template = 'legacy_template--' . $entity->type;
  263. if (key_exists($legacy_template, $enabled_templates) && $enabled_templates[$legacy_template]) {
  264. $build['#entity']->nid = NULL;
  265. $build['#node'] = $build['#entity'];
  266. $modules = module_list();
  267. foreach ($modules as $mname => $details) {
  268. $function_name = $mname . '_node_view_alter';
  269. if (function_exists($function_name)) {
  270. $function_name($build);
  271. }
  272. }
  273. }
  274. }
  275. }