You are here

function computed_field_widget_info in Computed Field 6

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

Implementation of cck hook_widget_info()

File

./computed_field.module, line 265

Code

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