123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- <?php
- /**
- * Sorts a multidimensional array into alphabetical order.
- *
- * @param $key .
- *
- * @return \Closure
- */
- function tripal_ds_sort_array($key) {
- return function ($a, $b) use ($key) {
- return strnatcmp($a[$key], $b[$key]);
- };
- }
- /**
- * Sorts a multidimensional array of objects into alphabetical order.
- *
- * @param $key .
- *
- * @return \Closure
- */
- function tripal_ds_sort_object($key) {
- return function ($a, $b) use ($key) {
- return strnatcmp($a->$key, $b->$key);
- };
- }
- /**
- * Builds the tripal_ds layout for all content types other than Publications.
- *
- * @param $bundle_name
- * Machine name of bundle, example bio_data_1
- * @param $instances
- *
- * @return bool
- */
- function _ds_layout_settings_info($bundle_name, $instances) {
- $region_right = [];
- $region_left = [];
- $prop_fields = [];
- $summary_fields = [];
- $data_sequence_fields = [];
- $all_other_fields = [];
- $fields_with_regions = [];
- $i = 0;
- $all_fields = [];
- try {
- // Get the bundle and term objects.
- $bundle = tripal_load_bundle_entity(['name' => $bundle_name]);
- $term = tripal_load_term_entity(['term_id' => $bundle->term_id]);
- // Build one large multidimensional array of all instances to sort in alpha
- // order to display fields in label alpha order.
- foreach ($instances as $key => $instance) {
- $all_fields[$i] = $instance;
- $i++;
- }
- usort($all_fields, tripal_ds_sort_array('label'));
- // Iterate through the fields of this bundle.
- foreach ($all_fields as $key => $instance) {
- $instance_name = $instance['field_name'];
- if ($instance_name == "rdfs__type") {
- array_push($summary_fields, $instance_name);
- }
- else {
- //TODO: How do we handle non-chado dbs, placement of fields within
- // tripal panes might need to be done in a hook.
- $instance_base_table = array_key_exists('base_table', $instance['settings']) ? $instance['settings']['base_table'] : '';
- $instance_base_chado = array_key_exists('chado_table', $instance['settings']) ? $instance['settings']['chado_table'] : '';
- $prop_table = strpos($instance_base_chado, 'prop');
- $data_sequence = strpos($instance_name, 'data__sequence');
- if ($instance_base_chado && $instance_base_table) {
- if ($instance_base_chado == $instance_base_table) {
- if ($prop_table !== FALSE) {
- array_push($prop_fields, $instance_name);
- }
- elseif ($data_sequence !== FALSE) {
- array_push($data_sequence_fields, $instance_name);
- }
- else {
- array_push($summary_fields, $instance_name);
- }
- }
- elseif ($instance_base_chado != $instance_base_table) {
- if ($prop_table !== FALSE) {
- array_push($prop_fields, $instance_name);
- }
- elseif ($data_sequence !== FALSE) {
- array_push($data_sequence_fields, $instance_name);
- }
- else {
- array_push($all_other_fields, $instance);
- // Update the display settings so that the title is hidden.
- $instance['display']['default']['label'] = 'hidden';
- field_update_instance($instance);
- }
- }
- }
- else {
- // The tripal_chado module adds an image to the organism content
- // type so we want to make sure that image goes in the summary.
- // It is not a TripalField so it won't have a chado table.
- if ($instance_name == 'data__image' and $term->name == 'organism') {
- array_push($summary_fields, $instance_name);
- }
- }
- }
- }
- // Consolidate the field sets.
- if (!empty($summary_fields)) {
- _summary_field_group_info($bundle_name, $summary_fields);
- }
- if (!empty($prop_fields)) {
- _prop_field_group_info($bundle_name, $prop_fields);
- }
- if (!empty($data_sequence_fields)) {
- _data_sequence_field_group_info($bundle_name, $data_sequence_fields);
- }
- if (!empty($all_other_fields)) {
- foreach ($all_other_fields as $key => $other_field) {
- $group_field_name = 'gp_' . $other_field['field_name'];
- // Need to truncate the names because of database field size restrictions,
- // updating fields here to ensure name consistency.
- $group_field_name = substr($group_field_name, 0, 27);
- // Add random numbers to ensure the field name is unique within the 32
- // character limit of the field.
- $group_field_name = $group_field_name . rand(0, 99999);
- tripal_ds_additional_fields_field_group_info($bundle_name, $other_field['label'], $group_field_name, $other_field['field_name']);
- }
- }
- // Build one large multidimensional array of all instances to sort in alpha
- // order to display fields in label alpha order.
- $right_fields = [];
- $all_field_groups = field_group_info_groups('TripalEntity', $bundle_name);
- if (!empty($all_field_groups)) {
- if (is_array($all_field_groups)) {
- if (!isset($all_field_groups['default'])) {
- $all_field_groups['default'] = [];
- }
- foreach ($all_field_groups['default'] as $key => $field_name) {
- $right_fields[$key] = $field_name;
- }
- usort($right_fields, tripal_ds_sort_object('label'));
- }
- }
- elseif (empty($all_field_groups)) {
- //Add the original instances that were passed and the field_groups that
- //were created.
- $field_group_fields = db_select('field_group', 'fg')
- ->fields('fg', ['group_name', 'data'])
- ->condition('bundle', $bundle_name, '=')
- ->execute()
- ->fetchAll();
- $instance_names = [];
- $field_group_names = [];
- foreach ($all_fields as $key => $instance) {
- $instance_names[$key]['field_name'] = $instance['field_name'];
- $instance_names[$key]['label'] = $instance['label'];
- }
- foreach ($field_group_fields as $key => $field_group_name) {
- $data = unserialize($field_group_name->data);
- $field_group_names[$key]['field_name'] = $field_group_name->group_name;
- $field_group_names[$key]['label'] = $data['format_settings']['label'];
- }
- $all_field_groups = array_merge($instance_names, $field_group_names);
- usort($all_field_groups, tripal_ds_sort_array('label'));
- }
- // Now build the $region_right array and the fields array.
- $i = 0;
- if (empty($right_fields)) {
- foreach ($all_field_groups as $index => $field) {
- $region_right[$i] = $field['field_name'];
- $i++;
- tripal_ds_field_group_update_weight($field['field_name'], $bundle_name, $i);
- }
- }
- elseif (!empty($right_fields)) {
- foreach ($right_fields as $index => $field) {
- // Check if the child is already present which is a problem when groups
- // are nested within groups.
- if (in_array($field->group_name, $region_right)) {
- // Still need to check for children and add them.
- if (!empty($field->children)) {
- foreach ($field->children as $index => $child) {
- $region_right[$i] = $child;
- $i++;
- }
- }
- }
- else {
- $region_right[$i] = $field->group_name;
- if (!empty($field->children)) {
- foreach ($field->children as $index => $child) {
- $i++;
- $region_right[$i] = $child;
- }
- }
- $i++;
- }
- // Now update the weights of the field_groups.
- tripal_ds_field_group_update_weight($field->group_name, $bundle_name, $i);
- }
- }
- foreach ($region_right as $index => $field) {
- $fields_with_regions[$field] = 'right';
- }
- // Add blocks to $region_left and build the toc field that is placed within.
- _ds_fields_info_write($bundle_name);
- $region_left = ['toc'];
- $fields_with_regions += ['toc' => 'left'];
- // Build the ds layout.
- $record = new stdClass;
- $record->id = 'TripalEntity|' . $bundle_name . '|default';
- $record->entity_type = 'TripalEntity';
- $record->bundle = $bundle_name;
- $record->view_mode = 'default';
- $record->layout = 'tripal_ds_feature';
- $settings = [
- 'regions' => [
- 'left' =>
- $region_left,
- 'right' =>
- $region_right,
- ],
- 'fields' =>
- $fields_with_regions,
- 'classes' => [],
- 'wrappers' => [
- 'left' => 'div',
- 'right' => 'div',
- ],
- 'layout_wrapper' => 'div',
- 'layout_attributes' => '',
- 'layout_attributes_merge' => 1,
- 'layout_link_attribute' => '',
- 'layout_link_custom' => '',
- 'layout_disable_css' => 0,
- ];
- $record->settings = $settings;
- drupal_write_record('ds_layout_settings', $record);
- // Clear the Drupal cache.
- drupal_flush_all_caches();
- } catch (Exception $e) {
- watchdog_exception('tripal_ds', $e);
- return FALSE;
- }
- return TRUE;
- }
- /**
- * Builds the tripal_ds layout for Publications.
- *
- * @param $bundle_name
- * Machine name of bundle, example bio_data_1
- * @param $instances
- *
- * @return bool
- */
- function _ds_layout_pub_settings_info($bundle_name, $instances) {
- $region_right = [];
- $region_left = [];
- $properties = [];
- $all_fields = [];
- $instances_for_field_groups = [];
- $disabled_instances = [];
- try {
- // Add Abstract, Citation, DB Cross Reference, Properties.
- $all_fields['tpub__abstract'] = 'right';
- $all_fields['tpub__citation'] = 'right';
- $all_fields['sbo__database_cross_reference'] = 'right';
- $all_fields['schema__additional_type'] = 'right';
- $all_fields['tpub__doi'] = 'right';
- $all_fields['tpub__publication_date'] = 'right';
- $all_fields['sio__references'] = 'right';
- // Iterate through the fields of this bundle.
- foreach ($instances as $key => $instance) {
- $instance_name = $instance['field_name'];
- if ($instance_name == 'sbo__database_cross_reference'
- || $instance_name == 'sio__references') {
- array_push($instances_for_field_groups, $instance);
- // Update the display settings so that the title is hidden.
- $instance['display']['default']['label'] = 'hidden';
- field_update_instance($instance);
- }
- elseif ($instance_name == 'schema__additional_type' || $instance_name == 'tpub__doi'
- || $instance_name == 'tpub__publication_date' || $instance_name == 'tpub__abstract' ||
- $instance_name == 'tpub__citation') {
- array_push($properties, $instance_name);
- }
- else {
- array_push($disabled_instances, $instance_name);
- }
- }
- //Publication fields that are not going in the properties table.
- foreach ($instances_for_field_groups as $key => $other_field) {
- // Temporary field names.
- $temporary_field = [];
- $group_field_name = 'gp_' . $other_field['field_name'];
- // Need to truncate the names because of database field size restrictions,
- // updating fields here to ensure name consistency.
- $group_field_name = substr($group_field_name, 0, 27);
- // Add random numbers to ensure the field name is unique within the 32
- // character limit of the field.
- $group_field_name = $group_field_name . rand(0, 99999);
- // Build the field group.
- tripal_ds_additional_fields_field_group_info($bundle_name, $other_field['label'], $group_field_name, $other_field['field_name']);
- // Update arrays.
- array_push($temporary_field, $group_field_name, $other_field['field_name']);
- $region_right = array_merge($region_right, $temporary_field);
- $all_fields += [$group_field_name => 'right',];
- }
- //Properties table fields.
- if (!empty($properties)) {
- _publication_prop_field_group_info($bundle_name, $properties);
- array_unshift($properties, 'group_summary_tripalpane', 'group_summary_table');
- $region_right = array_merge($region_right, $properties);
- $all_fields += [
- 'group_summary_tripalpane' => 'right',
- 'group_summary_table' => 'right',
- ];
- }
- if (!empty($all_fields)) {
- foreach ($disabled_instances as $disabled_field) {
- $all_fields += [$disabled_field => 'disabled'];
- }
- }
- // Add blocks to $region_left and build the toc field that is placed within.
- _ds_fields_info_write($bundle_name);
- $region_left += ['toc'];
- $all_fields += ['toc' => 'left'];
- // Build the ds layout.
- $record = new stdClass;
- $record->id = 'TripalEntity|' . $bundle_name . '|default';
- $record->entity_type = 'TripalEntity';
- $record->bundle = $bundle_name;
- $record->view_mode = 'default';
- $record->layout = 'tripal_ds_feature';
- $settings = [
- 'regions' => [
- 'left' =>
- $region_left,
- 'right' =>
- $region_right,
- ],
- 'fields' =>
- $all_fields,
- 'classes' => [],
- 'wrappers' => [
- 'left' => 'div',
- 'right' => 'div',
- ],
- 'layout_wrapper' => 'div',
- 'layout_attributes' => '',
- 'layout_attributes_merge' => 1,
- 'layout_link_attribute' => '',
- 'layout_link_custom' => '',
- 'layout_disable_css' => 0,
- ];
- $record->settings = $settings;
- drupal_write_record('ds_layout_settings', $record);
- // Clear the Drpual chace
- drupal_flush_all_caches();
- } catch (Exception $e) {
- watchdog_exception('tripal_ds', $e);
- return FALSE;
- }
- return TRUE;
- }
- /**
- * Implements hook_ds_fields_info().
- * Creates the Table of Contents field.
- *
- * $param $entity_type
- */
- function tripal_ds_ds_fields_info($entity_type) {
- $fields = [];
- $fields['toc'] = [
- 'title' => t('Table of Contents'),
- 'field_type' => DS_FIELD_TYPE_FUNCTION,
- 'function' => 'tripal_ds_toc_block',
- ];
- return ['TripalEntity' => $fields];
- }
- /**
- * Adds the content the to Table of Contents block.
- *
- * @param $entity_type
- *
- * @return Object
- */
- function tripal_ds_toc_block($entity_type) {
- $bundle_name = $entity_type['bundle'];
- $toc = views_embed_view('tripal_content_type_toc', 'block', $bundle_name);
- return $toc;
- }
- /**
- * Creates the field_group for the Table of Contents.
- *
- * @param $bundle_name
- * Machine name of bundle, example bio_data_1
- */
- function _ds_fields_info_write($bundle_name) {
- $fields = new stdClass;
- $fields->id = 'TripalEntity|' . $bundle_name . '|default';
- $fields->entity_type = 'TripalEntity';
- $fields->bundle = $bundle_name;
- $fields->view_mode = 'default';
- $fields->settings = [
- 'toc' => [
- 'weight' => 0,
- 'label' => 'hidden',
- 'format' => 'default',
- ],
- ];
- drupal_write_record('ds_field_settings', $fields);
- }
|