function _node_characters

7.x content_types.inc _node_characters($length)

Helper function for teaser length choices.

File

drupal-7.x/modules/node/content_types.inc, line 247
Content type editing user interface.

Code

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