| 7 content_types.inc | _node_characters($length) |
| 8 content_types.inc | _node_characters($length) |
Helper function for teaser length choices.
File
- modules/
node/ content_types.inc, line 247 - Content type editing UI.
Code
function _node_characters($length) {
return ($length == 0) ? t('Unlimited') : format_plural($length, '1 character', '@count characters');
}
Login or register to post comments