You are here

function statistics_counter_yearcount_getter_callback in Statistics Counter 7

Same name and namespace in other branches
  1. 8 statistics_counter.module \statistics_counter_yearcount_getter_callback()

Getter callback for monthcount property.

Parameters

object $item: A node object.

Return value

int View counter.

See also

_statistics_counter_getter_callback()

1 string reference to 'statistics_counter_yearcount_getter_callback'
statistics_counter_entity_property_info_alter in ./statistics_counter.module
Implements hook_entity_property_info_alter().

File

./statistics_counter.module, line 159
Statistics Counter

Code

function statistics_counter_yearcount_getter_callback($item) {
  return _statistics_counter_getter_callback($item->nid, 'yearcount');
}