function statistics_tokens

Same name in other branches
  1. 9 core/modules/statistics/statistics.tokens.inc \statistics_tokens()
  2. 8.9.x core/modules/statistics/statistics.tokens.inc \statistics_tokens()
  3. 10 core/modules/statistics/statistics.tokens.inc \statistics_tokens()
  4. 11.x core/modules/statistics/statistics.tokens.inc \statistics_tokens()

Implements hook_tokens().

File

modules/statistics/statistics.tokens.inc, line 34

Code

function statistics_tokens($type, $tokens, array $data = array(), array $options = array()) {
    $url_options = array(
        'absolute' => TRUE,
    );
    $replacements = array();
    if ($type == 'node' & !empty($data['node'])) {
        $node = $data['node'];
        foreach ($tokens as $name => $original) {
            if ($name == 'total-count') {
                $statistics = statistics_get($node->nid);
                $replacements[$original] = $statistics['totalcount'];
            }
            elseif ($name == 'day-count') {
                $statistics = statistics_get($node->nid);
                $replacements[$original] = $statistics['daycount'];
            }
            elseif ($name == 'last-view') {
                $statistics = statistics_get($node->nid);
                $replacements[$original] = format_date($statistics['timestamp']);
            }
        }
        if ($created_tokens = token_find_with_prefix($tokens, 'last-view')) {
            $statistics = statistics_get($node->nid);
            $replacements += token_generate('date', $created_tokens, array(
                'date' => $statistics['timestamp'],
            ), $options);
        }
    }
    return $replacements;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.