You are here

function piwik_stats_drush_command in Piwik Statistic Integration 7.2

Implements hook_drush_command().

@See drush_parse_command() for a list of recognized keys.

Return value

An associative array describing your command(s).

File

./piwik_stats.drush.inc, line 15
Integrates piwik statistics with drush.

Code

function piwik_stats_drush_command() {
  $items = array();
  $items['piwik-stats-fill'] = array(
    'description' => "Update piwik stats fields.",
    'aliases' => array(
      'psf',
    ),
    'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_DATABASE,
  );
  return $items;
}