You are here

function theme_ed_classified_category_adcount in Classified Ads 5.2

Same name and namespace in other branches
  1. 5 ed_classified_themefuncs.inc \theme_ed_classified_category_adcount()
  2. 6.2 ed_classified_themefuncs.inc \theme_ed_classified_category_adcount()
  3. 7.2 ed_classified_themefuncs.inc \theme_ed_classified_category_adcount()
2 theme calls to theme_ed_classified_category_adcount()
theme_ed_classified_category_list_row in ./ed_classified_themefuncs.inc
theme_ed_classified_taxonomy in ./ed_classified_themefuncs.inc
Theme a classified ads taxonomy browser page

File

./ed_classified_themefuncs.inc, line 102
$ Simple text-based classified ads module. Michael Curry, Exodus Development, Inc. exodusdev@gmail.com for more information, please visit http://exodusdev.com/drupal/modules/classified.module Copyright (c) 2006, 2007 Exodus Development, Inc. All…

Code

function theme_ed_classified_category_adcount($count) {
  return '<p class="classified-count">' . format_plural($count, 'There is @count ad in this category', 'There are @count ads in this category') . "</p>\n";
}