123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- <?php
- function tripal_chado_entity_create(&$entity, $type) {
- if ($type == 'TripalEntity') {
-
- if (!property_exists($entity, 'chado_table')) {
- $entity->chado_table = NULL;
- $entity->chado_column = NULL;
-
- $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
- if ($bundle->data_table) {
- $entity->chado_table = $bundle->data_table;
- $entity->chado_column = $bundle->type_column;
- }
- }
- if (!property_exists($entity, 'chado_record')) {
- $entity->chado_record = NULL;
- $entity->chado_record_id = NULL;
- }
- }
- }
- function tripal_chado_entity_presave($entity, $type) {
- }
- function tripal_chado_entity_postsave($entity, $type) {
- }
- function tripal_chado_entity_load($entities, $type) {
- if ($type == 'TripalBundle') {
- foreach ($entities as $bundle) {
-
- if (property_exists($bundle, 'id')) {
- $chado_bundle = db_select('chado_bundle', 'cb')
- ->fields('cb')
- ->condition('cb.bundle_id', $bundle->id)
- ->execute()
- ->fetchObject();
- $bundle->data_table = $chado_bundle->data_table;
- $bundle->type_linker_table = $chado_bundle->type_linker_table;
- $bundle->type_column = $chado_bundle->type_column;
- $bundle->type_id = $chado_bundle->type_id;
- }
- }
- }
- if ($type == 'TripalEntity') {
- foreach ($entities as $entity) {
-
- if (property_exists($entity, 'id')) {
-
- $entity->chado_table = NULL;
- $entity->chado_column = NULL;
- $entity->chado_record = NULL;
- $entity->chado_record_id = NULL;
-
- $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
- if (!$bundle) {
- continue;
- }
-
-
- $entity->chado_table = $bundle->data_table;
- $entity->chado_column = $bundle->type_column;
- $chado_entity = db_select('chado_entity' ,'ce')
- ->fields('ce')
- ->condition('ce.entity_id', $entity->id)
- ->execute()
- ->fetchObject();
- if ($chado_entity) {
- $schema = chado_get_schema($entity->chado_table);
- $record = chado_generate_var($entity->chado_table, array($schema['primary key'][0] => $chado_entity->record_id));
- $entity->chado_record = $record;
- $entity->chado_record_id = $chado_entity->record_id;
- }
- }
- }
- }
- }
- function tripal_chado_entity_insert($entity, $type) {
- }
- function tripal_chado_entity_update($entity, $type) {
- }
- function tripal_chado_entity_delete($entity, $type) {
- }
- function tripal_chado_entity_access($op, $entity = NULL, $account = NULL) {
- if (user_access('administer tripal data', $account)) {
- return TRUE;
- }
- if (isset($entity) && $type_name = $entity->type) {
- $op = ($op == 'view') ? 'view' : 'edit';
- if (user_access("$op any $type_name data", $account)) {
- return TRUE;
- }
- }
- return FALSE;
- }
- function tripal_chado_tripal_default_title_format($bundle, $available_tokens) {
- $format = array();
- $table = $bundle->data_table;
- if ($table == 'organism') {
- $format[] = array(
- 'format' => '[taxrank__genus] [taxrank__species]',
- 'weight' => -5
- );
- }
- if ($table == 'analysis') {
- $format[] = array(
- 'format' => '[schema__name]',
- 'weight' => -5
- );
- }
- if ($table == 'feature') {
- $format[] = array(
- 'format' => '[schema__name]',
- 'weight' => -5
- );
- }
- if ($table == 'stock') {
- $format[] = array(
- 'format' => '[stock__name]',
- 'weight' => -5
- );
- }
- if ($table == 'pub') {
- $format[] = array(
- 'format' => '[tpub__title]',
- 'weight' => -5,
- );
- }
- return $format;
- }
- function tripal_chado_entity_property_info_alter(&$info) {
-
-
- if (isset($info['TripalEntity']['bundles'])) {
- foreach ($info['TripalEntity']['bundles'] as $bundle_id => $bundle) {
-
- foreach ($bundle['properties'] as $field_name => $field_info) {
-
-
- if (preg_match('/(\w+)__(\w+)/', $field_name, $matches)) {
- $info['TripalEntity']['bundles'][$bundle_id]['properties'][$field_name]['getter callback'] =
- 'tripal_chado_entity_property_get_value';
- }
- }
- }
- }
- }
- function tripal_chado_entity_property_get_value($entity, $options, $field_name, $entity_type) {
- $display = array(
- 'type' => '',
- 'label' => 'hidden',
- );
- $langcode = LANGUAGE_NONE;
- $items = field_get_items($entity_type, $entity, $field_name);
- if (count($items) == 1) {
- $render_array = field_view_value($entity_type, $entity, $field_name, $items[0], $display, $langcode);
- }
-
- else {
- $render_array = field_view_value($entity_type, $entity, $field_name, $items[0], $display, $langcode);
- drupal_set_message('Tripal Chado currently only supports views integration ' .
- 'for single value fields. The first value has been shown.', 'warning');
- }
- return drupal_render($render_array);
- }
- function tripal_chado_entity_view($entity, $type, $view_mode, $langcode) {
-
-
-
- if ($type =='TripalEntity') {
-
- if ($view_mode == 'full') {
-
- $bundle = tripal_load_bundle_entity(array('name' => $entity->bundle));
- $chado_table = $bundle->data_table;
- $chado_field = $bundle->type_column;
-
-
-
- $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates', array());
- $legacy_template = 'legacy_template--chado_' . $chado_table;
-
-
-
- if (key_exists($legacy_template, $enabled_templates) && $enabled_templates[$legacy_template]) {
-
- $fields = field_info_fields();
- foreach($fields as $field) {
- if ($field['storage']['type'] == 'field_chado_storage' or
- $field['storage']['type'] == 'tripal_no_storage') {
- $field_name = $field['field_name'];
- if (property_exists($entity, $field_name)) {
- $entity->$field_name = NULL;
- unset($entity->content[$field_name]);
- }
- }
- }
-
- $entity->type = 'chado_' . $chado_table;
- $entity->$chado_table = $entity->chado_record;
-
- $node_schema = drupal_get_schema('node');
- foreach ($node_schema['fields'] as $field_name => $details) {
- if (!property_exists($entity, $field_name)) {
- $entity->$field_name = '';
- if (array_key_exists('default', $details)) {
- $entity->$field_name = $details['default'];
- }
- }
- }
-
-
- $modules = module_list();
- foreach ($modules as $mname => $details) {
- $function_name = $mname . '_node_view';
- if (function_exists($function_name)) {
- $function_name($entity, $view_mode, $langcode);
- }
- }
- }
- }
- }
- }
- function tripal_chado_entity_view_alter(&$build) {
-
-
- if ($build['#entity_type'] == 'TripalEntity') {
- $enabled_templates = variable_get('tripal_chado_enabled_legacy_templates', array());
- $entity = $build['#entity'];
- $legacy_template = 'legacy_template--' . $entity->type;
- if (key_exists($legacy_template, $enabled_templates) && $enabled_templates[$legacy_template]) {
- $build['#entity']->nid = NULL;
- $build['#node'] = $build['#entity'];
- $modules = module_list();
- foreach ($modules as $mname => $details) {
- $function_name = $mname . '_node_view_alter';
- if (function_exists($function_name)) {
- $function_name($build);
- }
- }
- }
- }
- }
|