'', 'chado_column' => '', 'base_table' => '', 'semantic_web' => '', ); // Set this to the name of the storage backend that by default will support // this field. public static $default_storage = 'field_chado_storage'; /** * @see TripalField::create_info() */ function createInfo() { if (!$this->can_attach) { return; } $table_name = $this->details['chado_table']; $type_table = $this->details['chado_type_table']; $type_field = $this->details['chado_type_column']; $cv_id = $this->details['chado_cv_id']; $cvterm_id = $this->details['chado_cvterm_id']; return array( 'field_name' => $this->field_name, 'type' => 'chado_feature__seqlen', 'cardinality' => 1, 'locked' => FALSE, 'storage' => array( 'type' => 'field_chado_storage', ), 'settings' => array( 'chado_table' => $table_name, 'chado_column' => 'seqlen', 'semantic_web' => tripal_get_chado_semweb_term($table_name, 'seqlen'), ), ); } /** * @see TripalField::createInstanceInfo() */ function createInstanceInfo() { if (!$this->can_attach) { return; } $table_name = $this->details['chado_table']; $type_table = $this->details['chado_type_table']; $type_field = $this->details['chado_type_column']; $cv_id = $this->details['chado_cv_id']; $cvterm_id = $this->details['chado_cvterm_id']; return array( 'field_name' => $this->field_name, 'entity_type' => $this->entity_type, 'bundle' => $this->bundle->name, 'label' => 'Raw Sequence Length', 'description' => 'The number of residues in the raw sequence. This length is only for the assigned raw sequence and does not represent the length of any sequences derived from alignments. If this value is zero but aligned sequences are present then this record has no official assigned sequence.', 'required' => FALSE, 'settings' => array( 'auto_attach' => TRUE, ), 'widget' => array( 'type' => 'chado_feature__seqlen_widget', 'settings' => array( 'display_label' => 1, ), ), 'display' => array( 'default' => array( 'label' => 'inline', 'type' => 'chado_feature__seqlen_formatter', 'settings' => array(), ), ), ); } /** * @see TripalField::widgetInfo() */ public static function widgetInfo() { return array( 'chado_feature__seqlen_widget' => array( 'label' => t('Sequence Length'), 'field types' => array('chado_feature__seqlen'), ), ); } /** * @see TripalField::formatterInfo() */ static function formatterInfo() { return array( 'chado_feature__seqlen_formatter' => array( 'label' => t('Residues Length'), 'field types' => array('chado_feature__seqlen'), 'settings' => array( ), ), ); } /** * @see TripalField::formatterView() */ public function formatterView(&$element, $entity_type, $entity, $langcode, $items, $display) { foreach ($items as $delta => $item) { $element[$delta] = array( '#type' => 'markup', '#markup' => $item['value'], ); } } /** * @see TripalField::widgetForm() */ public function widgetForm(&$widget, &$form, &$form_state, $langcode, $items, $delta, $element) { $settings = $this->field['settings']; $field_name = $this->field['field_name']; $field_type = $this->field['type']; $field_table = $this->field['settings']['chado_table']; $field_column = $this->field['settings']['chado_column']; $widget['value'] = array( '#type' => 'value', '#value' => array_key_exists($delta, $items) ? $items[$delta]['value'] : '', ); $widget['feature__seqlen'] = array( '#type' => 'value', '#value' => 0, '#title' => $element['#title'], '#description' => $element['#description'], '#weight' => isset($element['#weight']) ? $element['#weight'] : 0, '#delta' => $delta, // '#element_validate' => array('chado_feature__seqlen_widget_validate'), ); } } /** * Callback function for validating the chado_feature__seqlen_widget. */ function chado_feature__seqlen_widget_validate($element, &$form_state) { $field_name = $element['#parents'][0]; // Get the residues so we can calculate teh length. //$residues = tripal_chado_get_field_form_values('feature__residues', $form_state, 0, 'feature__residues'); // Remove any white spaces. if ($residues) { $residues = preg_replace('/\s/', '', $residues); tripal_chado_set_field_form_values($field_name, $form_state, strlen($residues), 0, 'feature__seqlen'); } else { // Otherwise, remove the seqlen value tripal_chado_set_field_form_values($field_name, $form_state, '__NULL__', 0, 'feature_seqlen'); } }