function _aggregator_items
Helper function for drupal_map_assoc.
Parameters
$count: Items count.
Return value
A string that is plural-formatted as "@count items".
1 string reference to '_aggregator_items'
- aggregator_form_aggregator_admin_form_alter in modules/
aggregator/ aggregator.processor.inc - Implements hook_form_aggregator_admin_form_alter().
File
-
modules/
aggregator/ aggregator.module, line 788
Code
function _aggregator_items($count) {
return format_plural($count, '1 item', '@count items');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.