tripal_chado.entity.inc 10 KB

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