statistics_token_info()
Implements hook_token_info().
File
- core/modules/statistics/statistics.tokens.inc, line 13
- Builds placeholder replacement tokens for node visitor statistics.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | function statistics_token_info() { $node [ 'total-count' ] = array ( 'name' => t( "Number of views" ), 'description' => t( "The number of visitors who have read the node." ), ); $node [ 'day-count' ] = array ( 'name' => t( "Views today" ), 'description' => t( "The number of visitors who have read the node today." ), ); $node [ 'last-view' ] = array ( 'name' => t( "Last view" ), 'description' => t( "The date on which a visitor last read the node." ), 'type' => 'date' , ); return array ( 'tokens' => array ( 'node' => $node ), ); } |
Please login to continue.