123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <?php
- class chado_base__organism_id extends TripalField {
- /**
- * @see TripalField::info()
- */
- public function field_info() {
- return array(
- 'label' => t('Organism'),
- 'description' => t('A field for specifying an organism.'),
- 'default_widget' => 'chado_base__organism_id_widget',
- 'default_formatter' => 'chado_base__organism_id_formatter',
- 'settings' => array(
- 'field_display_string' => '<i>[organism.genus] [organism.species]</i>',
- ),
- 'storage' => array(
- 'type' => 'field_chado_storage',
- 'module' => 'tripal_chado',
- 'active' => TRUE
- ),
- );
- }
- /**
- * @see TripalField::attach_info()
- */
- public function attach_info($entity_type, $bundle, $settings) {
- $field_info = array();
- $table_name = $settings['data_table'];
- $type_table = $settings['type_table'];
- $type_field = $settings['field'];
- $cv_id = $settings['cv_id'];
- $cvterm_id = $settings['cvterm_id'];
- // Check the schema for the data table if it does not have
- // an 'organism_id' column then we don't want to attach this field.
- $schema = chado_get_schema($table_name);
- if (!array_key_exists('organism_id', $schema['fields'])) {
- return $field_info;
- }
- // If this is the organism table then do not attach as that is the
- // primary key
- if ($table_name == 'organism') {
- return $field_info;
- }
- // There is an organism_id column so attach the field!
- $field_info = array(
- 'field_name' => $table_name . '__organism_id',
- 'field_type' => 'chado_base__organism_id',
- 'widget_type' => 'chado_base__organism_id_widget',
- 'description' => 'Select an organism.',
- 'label' => 'Organism',
- 'is_required' => 0,
- 'storage' => 'field_chado_storage',
- 'widget_settings' => array(
- 'display_label' => 1
- ),
- 'field_settings' => array(
- 'chado_table' => $table_name,
- 'chado_column' => 'organism_id',
- 'semantic_web' => array(
- 'name' => 'organism',
- 'accession' => 'organism',
- 'ns' => 'local',
- 'nsurl' => '',
- ),
- ),
- );
- return $field_info;
- }
- /**
- * @see TripalField::widget_info()
- */
- public function widget_info() {
- return array(
- 'label' => t('Organism Select'),
- 'field types' => array('chado_base__organism_id')
- );
- }
- /**
- * @see TripalField::formatter_info()
- */
- public function formatter_info() {
- return array(
- 'label' => t('Organism'),
- 'field types' => array('chado_base__organism_id'),
- 'settings' => array(
- ),
- );
- }
- /**
- * @see TripalField::formatter_view()
- */
- public function formatter_view(&$element, $entity_type, $entity,
- $field, $instance, $langcode, $items, $display) {
- $content = $items[0]['value'];
- if (array_key_exists('entity_id', $items[0])) {
- $content = l(strip_tags($items[0]['value']), 'bio_data/' . $items[0]['entity_id']);
- }
- // The cardinality of this field is 1 so we don't have to
- // iterate through the items array, as there will never be more than 1.
- $element[0] = array(
- '#type' => 'markup',
- '#markup' => $content,
- );
- }
- /**
- * @see TripalField::widget()
- */
- public function widget_form(&$widget, $form, $form_state, $field, $instance,
- $langcode, $items, $delta, $element) {
- $default_value = 0;
- if (array_key_exists('organism_id', $items[0])) {
- $default_value = $items[0]['organism_id'];
- }
- $options = tripal_get_organism_select_options(FALSE);
- $widget['value'] = array(
- '#type' => 'select',
- '#title' => $element['#title'],
- '#description' => $element['#description'],
- '#options' => $options,
- '#default_value' => $default_value,
- '#required' => $element['#required'],
- '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
- '#delta' => $delta,
- '#element_validate' => array('chado_base__organism_id_widget_validate'),
- );
- $widget['add_organism'] = array(
- '#type' => 'item',
- '#markup' => l('Add a new species', 'admin/content/bio_data/add/species', array('attributes' => array('target' => '_blank'))),
- );
- }
- /**
- * @see TripalField::load()
- */
- public function load($field, $entity, $details) {
- $record = $details['record'];
- $settings = $field['settings'];
- $field_name = $field['field_name'];
- $field_type = $field['type'];
- $field_table = $field['settings']['chado_table'];
- $field_column = $field['settings']['chado_column'];
- $organism = $record->organism_id;
- $string = $settings['field_display_string'];
- $value = tripal_replace_chado_tokens($string, $organism);
- $entity->{$field_name}['und'][0]['value'] = $value;
- $entity->{$field_name}['und'][0]['organism_id'] = $organism->organism_id;
- // Is there a published entity for this organism?
- if (property_exists($entity->chado_record->$field_column, 'entity_id')) {
- $fk_entity_id = $entity->chado_record->$field_column->entity_id;
- $entity->{$field_name}['und'][0]['entity_id'] = $fk_entity_id;
- $entity->{$field_name}['und'][0]['entity_type'] = 'TripalEntity';
- }
- }
- /**
- * @see TripalField::settings_form()
- */
- public function settings_form($field, $instance, $has_data) {
- $settings = $field['settings'];
- $element = array();
- $element['instructions'] = array(
- '#type' => 'item',
- '#markup' => 'You may rewrite the way this field is presented to the end-user.
- The Rewrite Value field allows you to use tokens to indicate how the
- value should be displayed. Tokens will be substituted with appriorate
- data from the database. See the Available tokens list for the
- tokens you may use.'
- );
- $element['field_display_string'] = array(
- '#type' => 'textfield',
- '#title' => 'Rewrite Value',
- '#description' => t('Provide a mixture of text and/or tokens for the format.
- For example: [organism.genus] [organism.species]. When displayed,
- the tokens will be replaced with the actual value.'),
- '#default_value' => $settings['field_display_string'],
- );
- $element['tokens'] = array(
- '#type' => 'fieldset',
- '#collapsed' => TRUE,
- '#collapsible' => TRUE,
- '#title' => 'Available Tokens'
- );
- $headers = array('Token', 'Description');
- $rows = array();
- // Here we use the tripal_get_chado_tokens rather than the
- // tripal_get_entity_tokens because we can't gurantee that all organisms
- // have entities.
- $tokens = tripal_get_chado_tokens('organism');
- foreach ($tokens as $token) {
- $rows[] = array(
- $token['token'],
- $token['description'],
- );
- }
- $table_vars = array(
- 'header' => $headers,
- 'rows' => $rows,
- 'attributes' => array(),
- 'sticky' => FALSE,
- 'caption' => '',
- 'colgroups' => array(),
- 'empty' => 'There are no tokens',
- );
- $project_details = theme('table', $table_vars);
- $element['tokens']['list'] = array(
- '#type' => 'item',
- '#markup' => theme_table($table_vars),
- );
- // Add in the semantic web fields.
- $parent_elements = parent::settings_form($field, $instance, $has_data);
- $element = array_merge($element, $parent_elements);
- return $element;
- }
- }
- /**
- * Callback function for validating the chado_base__organism_id_widget.
- */
- function chado_base__organism_id_widget_validate($element, &$form_state) {
- $field_name = $element['#parents'][0];
- // If the form ID is field_ui_field_edit_form, then the user is editing the
- // field's values in the manage fields form of Drupal. We don't want
- // to validate it as if it were being used in a data entry form.
- if ($form_state['build_info']['form_id'] =='field_ui_field_edit_form') {
- return;
- }
- $organism_id = tripal_chado_get_field_form_values($field_name, $form_state);
- if (!$organism_id) {
- form_error($element, t("Please specify an organism."));
- }
- }
|