function _aggregator_items

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/aggregator/aggregator.module \_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 drupal-7.x/modules/aggregator/aggregator.processor.inc
Implements hook_form_aggregator_admin_form_alter().

Archivo

drupal-7.x/modules/aggregator/aggregator.module, line 780
Used to aggregate syndicated content (RSS, RDF, and Atom).

Código

function _aggregator_items($count) {
  return format_plural($count, '1 item', '@count items');
}