You are here

function radioactivity_field_formatter_info in Radioactivity 7

Same name and namespace in other branches
  1. 7.2 radioactivity.field.inc \radioactivity_field_formatter_info()

File

./radioactivity.field.inc, line 113

Code

function radioactivity_field_formatter_info() {
  return array(
    RADIOACTIVITY_AJAX_FORMATTER => array(
      'label' => t('AJAX radioactivity emitter'),
      'field types' => array(
        RADIOACTIVITY_FIELD_TYPE,
      ),
    ),
    RADIOACTIVITY_ENERGY_FORMATTER => array(
      'label' => t('Textual energy display'),
      'field types' => array(
        RADIOACTIVITY_FIELD_TYPE,
      ),
    ),
    RADIOACTIVITY_POPULARITY_FORMATTER => array(
      'label' => t('Popularity formatter shows the energy in percentages'),
      'field types' => array(
        RADIOACTIVITY_FIELD_TYPE,
      ),
    ),
  );
}