function drush_piwik_stats_fill in Piwik Statistic Integration 7.2
Command Callback: Update piwik stats fields.
File
- ./
piwik_stats.drush.inc, line 38 - Integrates piwik statistics with drush.
Code
function drush_piwik_stats_fill() {
// We want some fresh data here, remove cached data.
db_delete('cache')
->condition('cid', 'piwik_stats:xml:%', 'LIKE')
->execute();
// Get the queue of fields to fill.
$queue = piwik_stats_get_queue_items();
// Process each item.
foreach ($queue as $item) {
piwik_stats_process_queue_item($item);
}
cache_clear_all();
drush_log(dt('Successfully updated piwik fields.'), 'success');
}