chado_linker__contact_widget.inc
File
tripal_chado/includes/TripalFields/chado_linker__contact/chado_linker__contact_widget.incView source
- <?php
-
- class chado_linker__contact_widget extends ChadoFieldWidget {
- // The default lable for this field.
- public static $default_label = 'Contacts';
-
- // The list of field types for which this formatter is appropriate.
- public static $field_types = array('chado_linker__contact');
-
- /**
- *
- * @see TripalFieldWidget::form()
- */
- public function form(&$widget, &$form, &$form_state, $langcode, $items, $delta, $element) {
- parent::form($widget, $form, $form_state, $langcode, $items, $delta, $element);
-
- $field_name = $this->field['field_name'];
- $field_type = $this->field['type'];
- $base_table = $this->instance['settings']['base_table'];
- $field_table = $this->instance['settings']['chado_table'];
- $chado_column = $this->instance['settings']['chado_column'];
- $instance = $this->instance;
-
- // Get the FK column that links to the base table.
- $schema = chado_get_schema($field_table);
- $pkey = $schema['primary key'][0];
-
- $fkey_lcolumn = key($schema['foreign keys'][$base_table]['columns']);
- // $fkey_lcolumn = key($schema['foreign keys']['protocol']['columns']);
-
- $fkey_rcolumn = $schema['foreign keys'][$base_table]['columns'][$fkey_lcolumn];
-
- // Get the field defaults.
- $record_id = '';
- $fk_value = (array_key_exists('#entity', $element) and $element['#entity']) ? $element['#entity']->chado_record_id : NULL;
- $contact_id = '';
- $name = '';
- $value = '';
-
- $name_term = chado_get_semweb_term('contact', 'name');
-
- // If the field already has a value then it will come through the $items
- // array. This happens when editing an existing record.
- if (count($items) > 0 and array_key_exists($delta, $items)) {
- $name = array_key_exists($name_term, $items[$delta]['value']) ? $items[$delta]['value'][$name_term] : $name;
- $fk_value = tripal_get_field_item_keyval($items, $delta, 'chado-' . $field_table . '__' . $fkey_lcolumn, $fk_value);
- $record_id = tripal_get_field_item_keyval($items, $delta, 'chado-' . $field_table . '__' . $pkey, $record_id);
- $contact_id = tripal_get_field_item_keyval($items, $delta, 'chado-' . $field_table . '__contact_id', $contact_id);
- }
-
- // Check $form_state['values'] to see if an AJAX call set the values.
- if (array_key_exists('values', $form_state) and
- array_key_exists($field_name, $form_state['values'])) {
- $name = $form_state['values'][$field_name]['und'][$delta]['name'];
- }
-
-
- $schema = chado_get_schema('contact');
-
- $widget['value'] = array(
- '#type' => 'value',
- '#value' => array_key_exists($delta, $items) ? $items[$delta]['value'] : '',
- );
-
- $widget['chado-' . $field_table . '__' . $pkey] = array(
- '#type' => 'value',
- '#default_value' => $record_id,
- );
- $widget['chado-' . $field_table . '__' . $fkey_lcolumn] = array(
- '#type' => 'value',
- '#default_value' => $fk_value,
- );
- $widget['chado-' . $field_table . '__contact_id'] = array(
- '#type' => 'value',
- '#default_value' => $contact_id,
- );
-
- $widget['name'] = array(
- '#type' => 'textfield',
- '#title' => t('Contact'),
- '#default_value' => $name,
- '#autocomplete_path' => 'admin/tripal/storage/chado/auto_name/contact',
- '#maxlength' => 100000,
- );
- }
-
-
- /**
- *
- * @see TripalFieldWidget::submit()
- */
- public function validate($element, $form, &$form_state, $langcode, $delta) {
- $field_name = $this->field['field_name'];
- $field_type = $this->field['type'];
- $base_table = $this->instance['settings']['base_table'];
- $field_table = $this->instance['settings']['chado_table'];
- $chado_column = $this->instance['settings']['chado_column'];
- $instance = $this->instance;
-
- // Get information about this contact linke rtable.
- $schema = chado_get_schema($field_table);
- $pkey = $schema['primary key'][0];
- $lfkey_field = key($schema['foreign keys'][$base_table]['columns']);
-
- // Get the name from the form state.
- $name = $form_state['values'][$field_name]['und'][$delta]['name'];
-
- // If the user provided a name then we want to set the foreign key
- // value to be the chado_record_id
- if ($name) {
- $contact = chado_generate_var('contact', array('name' => $name));
- if ($contact) {
- $form_state['values'][$field_name]['und'][$delta]['chado-' . $field_table . '__contact_id'] = $contact->contact_id;
- $form_state['values'][$field_name]['und'][$delta]['value'] = $name;
- }
- }
- // If no name is provided then we want to set the field for deletion.
- else {
- $form_state['values'][$field_name]['und'][$delta]['chado-' . $field_table . '__' . $lfkey_field] = '';
- $form_state['values'][$field_name]['und'][$delta]['chado-' . $field_table . '__contact_id'] = '';
- }
- }
- }