You are here

function theme_nodereferrer_formatter_count in NodeReferrer 7

Same name and namespace in other branches
  1. 6 nodereferrer.module \theme_nodereferrer_formatter_count()

Theme function for 'count' field formatter.

File

./nodereferrer.module, line 659
Defines a field type for backlinking referencing nodes.

Code

function theme_nodereferrer_formatter_count($info) {
  return count($info['#item']['items']);
}