You are here

function webform_calculator_webform_component_info in Webform Calculator 7

Same name and namespace in other branches
  1. 7.2 webform_calculator.module \webform_calculator_webform_component_info()

Implements of hook_webform_component_info().

File

./webform_calculator.module, line 215

Code

function webform_calculator_webform_component_info() {
  $components = array();
  $components['formula'] = array(
    'label' => t('Formula'),
    'description' => t('Computes values of other fields.'),
    'features' => array(
      // This component may be toggled as required or not. Defaults to TRUE.
      'required' => FALSE,
    ),
    'file' => 'components/formula.inc',
  );
  return $components;
}