function _aggregator_characters

Creates display text for teaser length option values.

Callback for drupal_map_assoc() within aggregator_form_aggregator_admin_form_alter().

1 string reference to '_aggregator_characters'
aggregator_form_aggregator_admin_form_alter in drupal/core/modules/aggregator/aggregator.processor.inc
Implements hook_form_aggregator_admin_form_alter().

File

drupal/core/modules/aggregator/aggregator.processor.inc, line 137
Processor functions for the aggregator module.

Code

function _aggregator_characters($length) {
  return $length == 0 ? t('Unlimited') : format_plural($length, '1 character', '@count characters');
}