You are here

function computed_field_field_info in Computed Field 5

Same name and namespace in other branches
  1. 6 computed_field.module \computed_field_field_info()
  2. 7 computed_field.module \computed_field_field_info()

Implementation of cck hook_field_info()

File

./computed_field.module, line 6

Code

function computed_field_field_info() {
  return array(
    'computed' => array(
      'label' => t('Computed'),
      'description' => t('Create field data via PHP code.'),
      'callbacks' => array(
        'tables' => CONTENT_CALLBACK_DEFAULT,
        'arguments' => CONTENT_CALLBACK_DEFAULT,
      ),
    ),
  );
}