You are here

function computed_field_widget_info in Computed Field 5

Same name and namespace in other branches
  1. 6 computed_field.module \computed_field_widget_info()

Implementation of cck hook_widget_info()

File

./computed_field.module, line 186

Code

function computed_field_widget_info() {
  return array(
    'computed' => array(
      'label' => t('Computed'),
      'field types' => array(
        'computed',
      ),
      'multiple values' => CONTENT_HANDLE_MODULE,
    ),
  );
}