Same name and namespace in other branches
  1. 5.0.x advagg.drush.inc \advagg_drush_command() 1 comment
  2. 6.0.x advagg.drush.inc \advagg_drush_command() 1 comment
  3. 7.x-2.x advagg.drush.inc \advagg_drush_command() 1 comment
  4. 8.x-3.x advagg.drush.inc \advagg_drush_command() 1 comment
  5. 8.x-4.x advagg.drush.inc \advagg_drush_command() 1 comment

Implements hook_drush_command().

File

./advagg.drush.inc, line 38

Code

function advagg_drush_command() {
    $items = [];
    $items['advagg-cron'] = [
        'description' => dt('Run the advagg cron hook.'),
        'examples' => [
            'Standard example' => 'drush advagg-cron',
        ],
        'aliases' => [
            'advagg-c',
        ],
    ];
    $items['advagg-clear-db-cache'] = [
        'description' => dt('Remove all entries from the advagg cache bins.'),
        'examples' => [
            'Standard example' => 'drush advagg-clear-db-cache',
        ],
        'aliases' => [
            'advagg-cdc',
        ],
    ];
    $items['advagg-clear-all-files'] = [
        'description' => dt('Remove all generated files.'),
        'examples' => [
            'Standard example' => 'drush advagg-clear-all-files',
        ],
        'aliases' => [
            'advagg-caf',
        ],
    ];
    $items['advagg-force-new-aggregates'] = [
        'description' => dt('Force the creation of all new aggregates by incrementing a global counter.'),
        'examples' => [
            'Standard example' => 'drush advagg-force-new-aggregates',
        ],
        'aliases' => [
            'advagg-fna',
        ],
    ];
    return $items;
}