123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- /**
- *
- * @param unknown $entity_type
- * @param unknown $entity
- * @param unknown $field
- * @param unknown $instance
- * @param unknown $langcode
- * @param unknown $items
- * @param unknown $display
- */
- function tripal_chado_md5checksum_checkbox_formatter(&$element, $entity_type, $entity, $field,
- $instance, $langcode, $items, $display) {
- foreach ($items as $delta => $item) {
- $content = key_exists('value', $item) ? $item['value'] : '';
- $element[$delta] = array(
- // We create a render array to produce the desired markup,
- '#type' => 'markup',
- '#markup' => $content,
- );
- }
- }
- /**
- *
- * @param unknown $field_name
- * @param unknown $widget
- * @param unknown $form
- * @param unknown $form_state
- * @param unknown $field
- * @param unknown $instance
- * @param unknown $langcode
- * @param unknown $items
- * @param unknown $delta
- * @param unknown $element
- */
- function tripal_chado_md5checksum_checkbox_widget(&$widget, $form, $form_state, $field, $instance, $langcode, $items, $delta, $element) {
- $widget['value'] = array(
- '#type' => 'checkbox',
- '#title' => $element['#title'],
- '#description' => $element['#description'],
- '#options' => array(0, 1),
- '#default_value' => 1,
- '#weight' => isset($element['#weight']) ? $element['#weight'] : 0,
- '#delta' => $delta,
- '#element_validate' => array('tripal_chado_md5checksum_checkbox_widget_validate'),
- );
- }
- /**
- * Callback function for validating the tripal_chado_md5checksum_checkbox_widget.
- */
- function tripal_chado_md5checksum_checkbox_widget_validate($element, &$form_state) {
- $field_name = $element['#parents'][0];
- // Calculate the md5 checksum for the sequence only if md5 box is checked and
- // the residues exist.
- $residues = tripal_chado_get_field_form_values('feature__residues', $form_state);
- if ($residues) {
- $residues = preg_replace('/\s/', '', $residues);
- tripal_chado_set_field_form_values($field_name, $form_state, md5($residues));
- }
- else {
- // Otherwise, remove the md5 value
- tripal_chado_set_field_form_values($field_name, $form_state, '__NULL__');
- }
- }
- /**
- * Loads the field values with appropriate data.
- *
- * This function is called by the tripal_chado_field_storage_load() for
- * each property managed by the field_chado_storage storage type.
- *
- * @param $field
- * @param $entity
- * @param $record
- */
- function tripal_chado_md5checksum_field_load($field, $entity, $record) {
- $field_name = $field['field_name'];
- if ($record and property_exists($record, 'md5checksum')) {
- $entity->{$field_name}['und'][] = array('value' => $record->md5checksum);
- }
- }
|