123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- <?php
- class so__transcript_formatter extends ChadoFieldFormatter {
-
- public static $default_label = 'Transcript';
-
- public static $field_types = ['so__transcript'];
-
- public function view(&$element, $entity_type, $entity, $langcode, $items, $display) {
- $mRNA_fieldset = [];
-
- if (count($items) == 0) {
- return $this->returnEmpty($element);
- }
-
- $fields_to_show = [];
- if (array_key_exists('transcript_fields', $this->instance['settings'])) {
- $fields_to_show = $this->fieldsToShow($this->instance['settings']['transcript_fields']);
- }
-
-
- if (count($fields_to_show) == 0) {
- return $this->returnDefaultTable($element, $items);
- }
-
-
- foreach ($items as $delta => $item) {
-
- if (!$item['value']) {
- continue;
- }
-
-
- if (!array_key_exists('entity', $item['value'])) {
- return $this->returnDefaultTable($element, $items);
- }
- }
-
-
-
- $field_ids = [];
- foreach ($fields_to_show as $field_name) {
- $field_info = field_info_field($field_name);
- $field_ids[] = $field_info['id'];
- }
-
-
- if (count($field_ids) == 0) {
- return $this->returnDefaultTable($element, $items);
- }
-
- return $this->returnDropDown($items, $element, $field_ids, $fields_to_show);
- }
-
- private function fieldsToShow($transcript_fields) {
- $to_show = [];
- foreach($transcript_fields as $field_name => $details) {
- if ($details['show'] == 1) {
- $to_show[] = $field_name;
- }
- }
- return $to_show;
- }
-
- private function returnDropDown($items, &$element, $field_ids, $fields_to_show) {
- drupal_add_js(drupal_get_path ('module', 'tripal_chado') . '/theme/js/so__transcript.js');
-
- $options = [0 => '--Select a transcript to view--'];
- $transcripts = [];
- foreach ($items as $delta => $item) {
-
- if (!$item['value']) {
- continue;
- }
- list($entity_type, $mRNA_entity_id) = explode(':', $item['value']['entity']);
- $result = tripal_load_entity('TripalEntity', [$mRNA_entity_id], FALSE, $field_ids);
- reset($result);
- $mRNA_entity = $result[$mRNA_entity_id];
- $options[$mRNA_entity_id] = $mRNA_entity->title;
-
- $transcripts[$mRNA_entity_id] = [
- '#type' => 'markup',
- '#prefix' => '<div id="' . 'tripal-chado-so__transcript-' . $mRNA_entity_id . '" class="tripal-chado-so__transcript-box">',
- '#suffix' => '</div>',
- ];
-
- $feature_name = $mRNA_entity->title;
- $feature_name = l($feature_name, "bio_data/" . $mRNA_entity->id, ['attributes' => ['target' => "_blank"]]);
- $transcripts[$mRNA_entity_id]['mRNA_link'] = [
- '#type' => 'markup',
- '#markup' => "<i>Click, " . $feature_name . ", for the full transcript page.</i>",
- '#weight' => -102
- ];
-
- $this->addFields($mRNA_entity, $fields_to_show, $transcripts[$mRNA_entity_id]);
- }
- $transcripts['transcript_dropdown'] = [
- '#type' => 'select',
- '#title' => 'Transcripts for this gene',
- '#options' => $options,
- '#weight' => -100,
- '#description' => 'Select a transcript to view more details.',
- '#attributes' => ['class' => ['tripal-chado-so__transcript-select']]
- ];
- $element[0] = $transcripts;
- }
-
- private function returnFieldsets($items, &$element, $field_ids, $fields_to_show) {
-
- $transcripts = [];
- foreach ($items as $delta => $item) {
-
- if (!$item['value']) {
- continue;
- }
- list($entity_type, $mRNA_entity_id) = explode(':', $item['value']['entity']);
-
- $result = tripal_load_entity('TripalEntity', [$mRNA_entity_id], FALSE, $field_ids);
- reset($result);
- $mRNA_entity = $result[$mRNA_entity_id];
-
- $transcripts[$mRNA_entity_id] = [
- '#type' => 'fieldset',
- '#title' => $mRNA_entity->title,
- '#description' => '',
- '#collapsible' => TRUE,
- '#collapsed' => TRUE,
- '#attributes' => ['class' => ['collapsible', 'collapsed']],
- ];
- drupal_add_library('system', 'drupal.collapse');
-
- $feature_name = $mRNA_entity->title;
- $feature_name = l($feature_name, "bio_data/" . $mRNA_entity->id, ['attributes' => ['target' => "_blank"]]);
- $transcripts[$mRNA_entity_id]['mRNA_link'] = [
- '#type' => 'markup',
- '#markup' => "<i>Click, " . $feature_name . ", for the full transcript page.</i>",
- ];
-
- $this->addFields($mRNA_entity, $fields_to_show, $transcripts[$mRNA_entity_id]);
- }
- $element[0] = $transcripts;
- }
-
- private function addFields($mRNA_entity, $fields, &$fieldset) {
-
- $mRNA_bundle = tripal_load_bundle_entity(['name'=> $mRNA_entity->bundle]);
- $hide_empty = tripal_get_bundle_variable('hide_empty_field', $mRNA_bundle->id);
-
- $entity_id = $mRNA_entity->id;
-
-
- $summary_rows = [];
-
-
-
- foreach ($fields as $field_name) {
-
-
- $field_info = field_info_field($field_name);
- $field_instance = field_info_instance('TripalEntity', $field_name, $mRNA_entity->bundle);
-
-
- $field_items = field_get_items('TripalEntity', $mRNA_entity, $field_name);
- $field_is_empty = tripal_field_is_empty($field_info, $field_items);
- if ($field_is_empty and $hide_empty) {
- continue;
- }
-
- if ($field_instance['display']['default']['type'] == 'hidden') {
- continue;
- }
-
- $field_element = field_view_field('TripalEntity', $mRNA_entity, $field_name, $field_instance['display']['default']);
- $field_element['#label_display'] = 'hidden';
-
-
-
-
- $cardinality = array_key_exists('cardinality', $field_info) ? $field_info['cardinality'] : 1;
- if ($cardinality == 1) {
-
- $summary_rows[] = [
- [
- 'data' => $field_instance['label'],
- 'header' => TRUE,
- ],
- [
- 'data' => drupal_render($field_element),
- ]
- ];
- }
-
- else {
- $fieldset[$field_name . '_header'] = [
- '#type' => 'markup',
- '#markup' => '<h3 class="tripal-chado-gene-transcript-fieldset-item">' . $field_instance['label'] . '</h3>',
- ];
- $fieldset[$field_name] = [
- '#type' => 'markup',
- '#markup' => drupal_render($field_element),
- ];
- }
- }
-
- if (count($summary_rows) > 0) {
-
- $summary_table = [
- 'header' => [],
- 'rows' => $summary_rows,
- 'attributes' => [
- 'id' => 'tripal_feature-table-transcript-fields-object',
- 'class' => 'tripal-data-table',
- ],
- 'sticky' => FALSE,
- 'caption' => "",
- 'colgroups' => [],
- 'empty' => 'This feature has no single cardinality transcript fields',
- ];
- $fieldset['summary_header'] = [
- '#type' => 'markup',
- '#markup' => '<h3>Transcript ' . $mRNA_entity->title . '</h3>',
- '#weight' => -101,
- ];
- $fieldset['summary_table'] = [
- '#type' => 'markup',
- '#markup' => theme_table($summary_table),
- '#weight' => -100,
- ];
- }
- }
-
- private function returnDefaultTable(&$element, $items) {
- $default_headers = ['Transcript Name', 'Identifier', 'Type', 'Location'];
- $default_rows = [];
- foreach ($items as $delta => $item) {
- if (!$item['value']) {
- continue;
- }
-
- $feature_name = $item['value']['schema:name'];
- $feature_uname = $item['value']['data:0842'];
- $loc = $item['value']['SO:0000735'];
- $type = $item['value']['rdfs:type'];
- if (array_key_exists('entity', $item['value']) and $item['value']['entity']) {
- list($entity_type, $entity_id) = explode(':', $item['value']['entity']);
- $feature_name = l($feature_name, "bio_data/" . $entity_id, ['attributes' => ['target' => "_blank"]]);
- }
- $default_rows[] = [$feature_name, $feature_uname, $type, $loc];
- }
-
- $default_table = [
- 'header' => $default_headers,
- 'rows' => $default_rows,
- 'attributes' => [
- 'id' => 'tripal_feature-table-transcripts-object',
- 'class' => 'tripal-data-table',
- ],
- 'sticky' => FALSE,
- 'caption' => "",
- 'colgroups' => [],
- 'empty' => 'This feature has no transcripts',
- ];
- $element[0] = [
- '#type' => 'markup',
- '#markup' => theme_table($default_table),
- ];
- }
-
- private function returnEmpty(&$element){
- $element[0] = [
- '#type' => 'markup',
- '#markup' => '',
- ];
- }
- }
|