function statistics_counter_yearcount_getter_callback in Statistics Counter 8
Same name and namespace in other branches
- 7 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 120 - Statistics Counter
Code
function statistics_counter_yearcount_getter_callback($item) {
return _statistics_counter_getter_callback($item->nid, 'yearcount');
}