t('Sequence length'), 'description' => t('A field for calculating the length of a sequence.'), 'default_widget' => 'chado_feature__seqlen_widget', 'default_formatter' => 'chado_feature__seqlen_formatter', 'settings' => array(), 'storage' => array( 'type' => 'field_chado_storage', 'module' => 'tripal_chado', 'active' => TRUE ), ); } /** * @see TripalField::attach_info() */ 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']; // If this is not the feature table then we don't want to attach. if ($table_name == 'feature') { $field_info = array( 'field_name' => 'feature__seqlen', 'field_type' => 'chado_feature__seqlen', 'widget_type' => 'chado_feature__seqlen_widget', 'description' => 'The length of the sequence (residues).', 'label' => 'Sequence Length', 'is_required' => 0, 'storage' => 'field_chado_storage', 'widget_settings' => array( 'display_label' => 1 ), 'field_settings' => array( 'chado_table' => $table_name, 'chado_column' => 'seqlen', 'semantic_web' => 'data:1249', ), ); } return $field_info; } /** * @see TripalField::widget_info() */ function widget_info() { return array( 'label' => t('Sequence Length'), 'field types' => array('chado_feature__seqlen'), ); } /** * @see TripalField::formatter_info() */ function formatter_info() { return array( 'label' => t('Residues Length'), 'field types' => array('chado_feature__seqlen'), 'settings' => array( ), ); } /** * @see TripalField::formatter_view() */ function formatter_view(&$element, $entity_type, $entity, $field, $instance, $langcode, $items, $display) { foreach ($items as $delta => $item) { $element[$delta] = array( '#type' => 'markup', '#markup' => $item['value'], ); } } /** * @see TripalField::widget_form() */ function widget_form(&$widget, $form, $form_state, $field, $instance, $langcode, $items, $delta, $element) { $settings = $field['settings']; $field_name = $field['field_name']; $field_type = $field['type']; $field_table = $field['settings']['chado_table']; $field_column = $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'); } }