computed_field.module in Computed Field 7
Same filename and directory in other branches
Functionality for the computed field.
File
computed_field.moduleView source
<?php
/**
* @file
* Functionality for the computed field.
*/
/**
* Implements hook_help().
*/
function computed_field_help($path, $arg) {
switch ($path) {
case 'admin/help#computed_field':
// Attempt to retrieve a README file.
$filepath = dirname(__FILE__) . '/README.md';
if (file_exists($filepath)) {
$readme = file_get_contents($filepath);
}
else {
$filepath = dirname(__FILE__) . '/README.txt';
if (file_exists($filepath)) {
$readme = file_get_contents($filepath);
}
}
// If a README file was not found, do nothing here.
if (!isset($readme)) {
return NULL;
}
// Display the README file.
if (module_exists('markdown')) {
$filters = module_invoke('markdown', 'filter_info');
$info = $filters['filter_markdown'];
if (function_exists($info['process callback'])) {
$output = $info['process callback']($readme, NULL);
}
else {
$output = '<pre>' . $readme . '</pre>';
}
}
else {
$output = '<pre>' . $readme . '</pre>';
}
return $output;
}
}
/**
* Implements hook_field_info().
*/
function computed_field_field_info() {
return array(
'computed' => array(
'label' => t('Computed'),
'description' => t('Create field data via PHP code.'),
'settings' => array(
'code' => '$entity_field[0][\'value\'] = "";',
'display_format' => '$display_output = $entity_field_item[\'value\'];',
'store' => 1,
'recalculate' => FALSE,
'database' => array(
'data_type' => 'varchar',
'data_length' => 32,
'data_size' => 'normal',
'data_precision' => 10,
'data_scale' => 2,
'data_not_NULL' => FALSE,
'data_default' => NULL,
'data_index' => FALSE,
),
),
'default_widget' => 'computed',
'default_formatter' => 'computed_field_plain',
// If we followed the core convention of separate fields for each data
// type we could make Entity API happy by just setting a property_type.
// Instead we have to use our own callback to determine the type then
// rerun theirs to setup the rest of the field properties.
'property_callbacks' => array(
'computed_field_entity_property_callback',
),
),
);
}
/**
* Callback to setup Entity API's field properties.
*/
function computed_field_entity_property_callback(&$info, $entity_type, $field, $instance, $field_type) {
$property_types = array(
'int' => 'integer',
'float' => 'decimal',
'numeric' => 'decimal',
'varchar' => 'text',
'text' => 'text',
'longtext' => 'text',
);
if (isset($field['columns']['value'], $property_types[$field['columns']['value']['type']])) {
// Entity API's defaults are pretty good so set the property_type and let them do the work for us.
$field_type['property_type'] = $property_types[$field['columns']['value']['type']];
entity_metadata_field_default_property_callback($info, $entity_type, $field, $instance, $field_type);
// The only thing is that a setter doesn't make sense, so let's disable it.
$property =& $info[$entity_type]['bundles'][$instance['bundle']]['properties'][$field['field_name']];
unset($property['setter callback']);
}
}
/**
* Implements hook_field_settings_form().
*/
function computed_field_field_settings_form($field, $instance, $has_data) {
$form = array();
$compute_func = 'computed_field_' . $field['field_name'] . '_compute';
$display_func = 'computed_field_' . $field['field_name'] . '_display';
$settings = $field['settings'];
$form['#element_validate'] = array(
'computed_field_field_settings_form_validate',
);
$form['code'] = array(
'#type' => 'textarea',
'#rows' => 15,
'#title' => t('Computed Code (PHP)'),
'#description' => t('<p>The variables available to your code include: <code>@fields</code>. To set the value of the field, set <code>@entity_field</code>. For multi-value computed fields continue with <code>@entity_field_multi</code>. Here\'s a simple example which sets the computed field\'s value to the value of the sum of the number fields (<code>@field_a</code> and <code>@field_b</code>) in a node entity:</p> !example <p>Alternately, this code can be supplied by your own custom function named: <code>@compute_func(&$entity_field, $entity_type, $entity, $field, $instance, $langcode, $items)</code>.</p>', array(
'@fields' => '&$entity_field, $entity_type, $entity, $field, $instance, $langcode, and $items',
'@entity_field' => '$entity_field[0][\'value\']',
'@entity_field_multi' => '$entity_field[1][\'value\']',
'@field_a' => 'field_a',
'@field_b' => 'field_b',
'!example' => '<p><code>$field_a = field_get_items($entity_type, $entity, "field_a");<br />
$field_b = field_get_items($entity_type, $entity, "field_b");<br />
$entity_field[0]["value"] = $field_a[0]["value"] + $field_b[0]["value"];</code></p>
',
'@compute_func' => $compute_func,
)),
'#default_value' => !empty($settings['code']) ? $settings['code'] : '$entity_field[0][\'value\'] = "";',
'#access' => !function_exists($compute_func),
);
if (function_exists($compute_func)) {
$form['compute_func'] = array(
'#type' => 'item',
'#markup' => t('<strong>This field is COMPUTED using <code>@compute_func()</code>.</strong>', array(
'@compute_func' => $compute_func,
)),
);
}
$form['display_format'] = array(
'#type' => 'textarea',
'#title' => t('Display Code (PHP)'),
'#description' => t('This code should assign a string to the <code>@display_output</code> variable, which will be printed when the field is displayed. The raw computed value of the field is in <code>@value</code>. <strong>Note:</strong> this code has no effect if you use the "Raw computed value" display formatter.<p> Alternately, this code can be supplied by your own custom function named: <code>@display_func($field, $entity_field_item, $entity_lang, $langcode, $entity)</code>. Return the value to be displayed. Original value is in $entity_field_item[\'value\'].', array(
'@display_output' => '$display_output',
'@value' => '$entity_field_item[\'value\']',
'@display_func' => $display_func,
)),
'#default_value' => !empty($settings['display_format']) ? $settings['display_format'] : '$display_output = $entity_field_item[\'value\'];',
'#access' => !function_exists($display_func),
);
if (function_exists($display_func)) {
$form['display_func'] = array(
'#type' => 'item',
'#markup' => t('<strong>This field is DISPLAYED using <code>@display_func()</code>.</strong>', array(
'@display_func' => $display_func,
)),
);
}
$form['recalculate'] = array(
'#type' => 'checkbox',
'#title' => t('Recalculate the field value every time.'),
'#description' => t('By default, Drupal will cache the value of this field even if it is not stored in the database (and even if Page Caching is disabled). This option will cause computed_field to recalculate the value every time this field is displayed. For example, a time-based calculated value may change more often than field cache is cleared. (Note that Drupal page caching will still cache the field value.)'),
'#default_value' => is_numeric($settings['recalculate']) ? $settings['recalculate'] : FALSE,
);
$form['store'] = array(
'#type' => 'checkbox',
'#title' => t('Store value in the database'),
'#description' => t('The value will be stored in the database with the settings below. As a result, it will only be recalculated when the entity is updated. This option is required when accessing the field through Views.'),
'#default_value' => is_numeric($settings['store']) ? $settings['store'] : 1,
'#disabled' => $has_data,
);
$form['database'] = array(
'#type' => 'fieldset',
'#title' => t('Database Storage Settings'),
);
if ($has_data) {
$form['database']['warning'] = array(
'#type' => 'item',
'#markup' => t('<strong>**This field currently has stored data, so modifications to its DB settings are not allowed.**</strong>'),
);
}
$form['database']['data_type'] = array(
'#type' => 'radios',
'#title' => t('Data Type'),
'#description' => t('The SQL datatype to store this field in.'),
'#default_value' => !empty($settings['database']['data_type']) ? $settings['database']['data_type'] : 'varchar',
'#options' => array(
'varchar' => 'varchar',
'text' => 'text',
'longtext' => 'longtext',
'int' => 'int',
'float' => 'float',
'numeric' => 'decimal',
),
'#required' => FALSE,
'#disabled' => $has_data,
);
$form['database']['data_length'] = array(
'#type' => 'textfield',
'#title' => t('Data Length (varchar/text)'),
'#description' => t('<strong>Only</strong> valid for <strong>varchar</strong> or <strong>text</strong> fields. The length of the field stored in the database.'),
'#default_value' => !empty($settings['database']['data_length']) ? $settings['database']['data_length'] : 32,
'#required' => FALSE,
'#disabled' => $has_data,
);
$form['database']['data_size'] = array(
'#type' => 'select',
'#title' => t('Data Size (int/float)'),
'#description' => t('<strong>Only</strong> valid for <strong>int</strong> or <strong>float</strong> fields. The size of the field stored in the database.'),
'#default_value' => !empty($settings['database']['data_size']) ? $settings['database']['data_size'] : 'normal',
'#options' => array(
'tiny' => 'tiny',
'small' => 'small',
'medium' => 'medium',
'normal' => 'normal',
'big' => 'big',
),
'#required' => FALSE,
'#disabled' => $has_data,
);
$form['database']['data_precision'] = array(
'#type' => 'select',
'#title' => t('Decimal Precision (decimal)'),
'#description' => t('<strong>Only</strong> valid for <strong>decimal</strong> fields. The total number of digits to store in the database, including those to the right of the decimal.'),
'#options' => drupal_map_assoc(range(10, 32)),
'#default_value' => !empty($settings['database']['data_precision']) ? $settings['database']['data_precision'] : 10,
'#required' => FALSE,
'#disabled' => $has_data,
);
$form['database']['data_scale'] = array(
'#type' => 'select',
'#title' => t('Decimal Scale (decimal)'),
'#description' => t('<strong>Only</strong> valid for <strong>decimal</strong> fields. The number of digits to the right of the decimal. '),
'#options' => drupal_map_assoc(range(0, 10)),
'#default_value' => !empty($settings['database']['data_scale']) ? $settings['database']['data_scale'] : 2,
'#required' => FALSE,
'#disabled' => $has_data,
);
$form['database']['data_default'] = array(
'#type' => 'textfield',
'#title' => t('Default Value'),
'#default_value' => $settings['database']['data_default'],
'#required' => FALSE,
'#disabled' => $has_data,
);
$form['database']['data_not_NULL'] = array(
'#type' => 'checkbox',
'#title' => t('Not NULL'),
'#default_value' => is_numeric($settings['database']['data_not_NULL']) ? $settings['database']['data_not_NULL'] : FALSE,
'#disabled' => $has_data,
);
$form['database']['data_index'] = array(
'#type' => 'checkbox',
'#title' => t('Index computed values in the database (Does not apply to text or longtext fields.)'),
'#default_value' => is_numeric($settings['database']['data_index']) ? $settings['database']['data_index'] : FALSE,
'#disabled' => $has_data,
);
return $form;
}
/**
* #element_validate callback for computed_field_field_settings_form().
*/
function computed_field_field_settings_form_validate($element, &$form_state) {
$settings = $form_state['values']['field']['settings'];
if ($settings['store']) {
if (empty($settings['database']['data_type'])) {
form_set_error('field][settings][data_type', t('To store this field in the database, please specify a data type.'));
}
if (($settings['database']['data_type'] == 'text' || $settings['database']['data_type'] == 'varchar') && empty($settings['database']['data_length'])) {
form_set_error('field][settings][database][data_length', t('To store this field in the database, please specify the data length.'));
}
if (($settings['database']['data_type'] == 'int' || $settings['database']['data_type'] == 'float') && (!empty($settings['database']['data_default']) && !is_numeric($settings['database']['data_default']))) {
form_set_error('field][settings][database][data_default', t('Your default value should be numeric given your data type.'));
}
}
}
/**
* Implements hook_field_load().
*/
function computed_field_field_load($entity_type, $entities, $field, $instances, $langcode, &$items, $age) {
$settings = $field['settings'];
// Compute field values on load if they aren't stored in the database.
if (!$settings['store']) {
foreach ($entities as $etid => $entity) {
_computed_field_compute_value($entity_type, $entity, $field, $instances, $langcode, $items[$etid]);
}
}
}
/**
* Implements hook_field_prepare_view().
*/
function computed_field_field_prepare_view($entity_type, $entities, $field, $instances, $langcode, &$items) {
$settings = $field['settings'];
// Compute field values in case user is "previewing" an entity.
foreach ($entities as $etid => $entity) {
if (isset($entity->op) && $entity->op == 'Preview' || $settings['recalculate']) {
_computed_field_compute_value($entity_type, $entity, $field, $instances, $langcode, $items[$etid]);
}
}
}
/**
* Implements hook_field_insert().
*/
function computed_field_field_insert($entity_type, $entity, $field, $instance, $langcode, &$items) {
_computed_field_compute_value($entity_type, $entity, $field, $instance, $langcode, $items);
}
/**
* Implements hook_field_update().
*/
function computed_field_field_update($entity_type, $entity, $field, $instance, $langcode, &$items) {
_computed_field_compute_value($entity_type, $entity, $field, $instance, $langcode, $items);
}
/**
* Implements hook_field_widget_info().
*/
function computed_field_field_widget_info() {
return array(
'computed' => array(
'label' => t('Computed'),
'field types' => array(
'computed',
),
'behaviors' => array(
'multiple values' => FIELD_BEHAVIOR_CUSTOM,
'default value' => FIELD_BEHAVIOR_NONE,
),
),
);
}
/**
* Implements hook_field_widget_form().
*/
function computed_field_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) {
// If there are no items yet, add a null item value to avoid
// preview errors when selecting a different language.
if (empty($items)) {
$items[0]['value'] = NULL;
}
foreach ($items as $item_delta => $item) {
$element[$item_delta]['value'] = array(
'#type' => 'value',
'#tree' => TRUE,
'#default_value' => isset($item['value']) ? $item['value'] : NULL,
);
}
return $element;
}
/**
* Implements hook_field_formatter_info().
*/
function computed_field_field_formatter_info() {
return array(
'computed_field_unsanitized' => array(
'label' => t('Unsanitized'),
'field types' => array(
'computed',
),
),
'computed_field_plain' => array(
'label' => t('Plain text'),
'field types' => array(
'computed',
),
),
'computed_field_markup' => array(
'label' => t('Filtered markup'),
'field types' => array(
'computed',
),
),
'computed_field_computed_value' => array(
'label' => t('Raw value, no display code'),
'field types' => array(
'computed',
),
),
);
}
/**
* Implements hook_field_formatter_view().
*/
function computed_field_field_formatter_view($entity_type, $entity, $field, $instance, $langcode, $items, $display) {
$element = array();
$data_to_display = FALSE;
// Special case formatter that returns the raw computed values without any display code processing.
if ($display['type'] == 'computed_field_computed_value') {
foreach ($items as $delta => $item) {
if (!isset($entity_field_item['value'])) {
$entity_field_item['value'] = NULL;
}
$element[$delta] = array(
'#markup' => $item['value'],
);
}
return $element;
}
// Other display formatters which run through display code processing.
// Check if the value is to be formatted by a display function outside the DB.
$display_func = 'computed_field_' . $field['field_name'] . '_display';
$display_in_code = function_exists($display_func);
// Loop the items to display.
foreach ($items as $delta => $item) {
// For "some" backwards compatibility.
$entity_field_item = $item;
// Setup a variable with the entity language if available.
if (isset($entity->language)) {
$entity_lang = $entity->language;
}
else {
$entity_lang = LANGUAGE_NONE;
}
// If there are value "holes" in the field array let's set the value to NULL,
// to avoid undefined index errors in typical PHP display code.
if (!isset($entity_field_item['value'])) {
$entity_field_item['value'] = NULL;
}
// Execute the display code.
$display_output = NULL;
if ($display_in_code) {
$display_output = $display_func($field, $entity_field_item, $entity_lang, $langcode, $entity);
}
else {
eval($field['settings']['display_format']);
}
// Track if any of our items produce non-empty output.
if (!empty($display_output) || is_numeric($display_output)) {
$data_to_display = TRUE;
}
// Output the formatted display item.
switch ($display['type']) {
case 'computed_field_unsanitized':
$element[$delta] = array(
'#markup' => $display_output,
);
break;
case 'computed_field_plain':
$element[$delta] = array(
'#markup' => check_plain($display_output),
);
break;
case 'computed_field_markup':
$element[$delta] = array(
'#markup' => check_markup($display_output),
);
break;
}
}
// If all items are empty then we should not return anything. This helps
// ensure that empty fields are not displayed at all. This check does not
// apply to fields stored in the DB as those are instead checked on save.
if (isset($field['settings']['store']) && !$field['settings']['store'] && !$data_to_display) {
return;
}
return $element;
}
/**
* Implements hook_field_is_empty().
*/
function computed_field_field_is_empty($item, $field) {
unset($empty);
// This will depend on the class of data type.
switch ($field['settings']['database']['data_type']) {
case 'int':
case 'float':
case 'numeric':
// For numbers, the field is empty if the value isn't numeric.
$empty = !is_numeric($item['value']);
break;
case 'varchar':
case 'text':
case 'longtext':
// For strings, the field is empty if it doesn't match the empty string.
$empty = $item['value'] === '';
break;
}
return $empty;
}
/**
* Private function to compute the fields value.
*/
function _computed_field_compute_value($entity_type, $entity, $field, $instance, $langcode, &$items) {
$settings = $field['settings'];
// Setup a variable with the field values.
$entity_field =& $items;
// Setup a variable with the entity language if available.
if (isset($entity->language)) {
$entity_lang = $entity->language;
}
else {
$entity_lang = LANGUAGE_NONE;
}
// Allow the value to be computed from code not stored in DB.
$compute_func = 'computed_field_' . $field['field_name'] . '_compute';
if (function_exists($compute_func)) {
$compute_func($entity_field, $entity_type, $entity, $field, $instance, $langcode, $items);
}
elseif (isset($settings['code'])) {
eval($settings['code']);
}
}
/**
* Implements hook_views_api().
*/
function computed_field_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'computed_field') . '/views',
);
}
/**
* Implements hook_views_data_alter().
*/
function computed_field_views_data_alter(&$data) {
$data['node']['computed_field_handler'] = array(
'title' => t('Computed Field Handler'),
'help' => t('Computed Field Handler for Views to handling aggregrate functions.'),
'field' => array(
'handler' => 'computed_field_handler_aggregate',
),
);
}
/**
* Description of computed_field_handler_aggregate.
*/
class computed_field_handler_aggregate extends views_handler_field {
protected $field_name = 'computed_field_name';
/**
* Loads additional fields.
*/
public function query() {
$this
->ensure_my_table();
$this
->add_additional_fields();
}
/**
* Default options form.
*/
public function option_definition() {
$options = parent::option_definition();
$options['computed_field_name'] = array(
'default' => '',
);
return $options;
}
/**
* Creates the form item for the options added.
*/
public function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['computed_field_name'] = array(
'#type' => 'textfield',
'#required' => TRUE,
'#title' => t('Computed Field Name'),
'#default_value' => $this->options['computed_field_name'],
'#description' => t('Please specify the computed field name where you have enabled aggregration (like SUM etc) and exposed in Views. Eg) field_computed'),
);
}
/**
* Renders the field handler.
*/
public function render($values) {
if (isset($this->options['computed_field_name']) && $this->options['computed_field_name']) {
$field_data = 'field_data_' . $this->options['computed_field_name'] . '_' . $this->options['computed_field_name'] . '_value';
return $values->{$field_data};
}
return NULL;
}
}
Functions
Classes
Name | Description |
---|---|
computed_field_handler_aggregate | Description of computed_field_handler_aggregate. |