You are here

function no_nbsp_field_formatter_info in No Non-breaking Space Filter 7

Implements hook_field_formatter_info().

Related topics

File

./no_nbsp.module, line 79
A filter module that deletes all non-breaking spaces.

Code

function no_nbsp_field_formatter_info() {
  return array(
    'no_nbsp' => array(
      'label' => t('No Non-breaking Space Filter'),
      'field types' => array(
        'text',
        'text_long',
        'text_with_summary',
      ),
    ),
  );
}