You are here

function statistics_counter_enable in Statistics Counter 8

Same name and namespace in other branches
  1. 7 statistics_counter.install \statistics_counter_enable()

Implements hook_enable().

File

./statistics_counter.install, line 83
Statistics Counter

Code

function statistics_counter_enable() {
  Database::getConnection()
    ->update('node_counter')
    ->fields([
    'weekcount' => 'daycount',
    'monthcount' => 'daycount',
    'yearcount' => 'daycount',
  ])
    ->execute();
}