You are here

function _aggregator_items in Drupal 6

Same name and namespace in other branches
  1. 4 modules/aggregator.module \_aggregator_items()
  2. 5 modules/aggregator/aggregator.module \_aggregator_items()
  3. 7 modules/aggregator/aggregator.module \_aggregator_items()

Helper function for drupal_map_assoc.

Parameters

$count: Items count.

Return value

Plural-formatted "@count items"

1 string reference to '_aggregator_items'
aggregator_admin_settings in modules/aggregator/aggregator.admin.inc
Form builder; Configure the aggregator system.

File

modules/aggregator/aggregator.module, line 938
Used to aggregate syndicated content (RSS, RDF, and Atom).

Code

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