You are here

function _name_formatter_output_types in Name Field 6

Same name and namespace in other branches
  1. 8 name.module \_name_formatter_output_types()
  2. 7 name.module \_name_formatter_output_types()

Private helper function to define the formatter types that are available for the CCK and Token modules.

2 calls to _name_formatter_output_types()
name_additional_content_theme in ./name.module
name_field_formatter_info in ./name.module
Implementation of hook_field_formatter_info().

File

./name.module, line 242
Defines an API for displaying and inputing names.

Code

function _name_formatter_output_types() {
  return array(
    'default' => t('Default'),
    'plain' => t('Plain'),
    'raw' => t('Raw'),
  );
}