You are here

function rrssb_drush_command in Ridiculously Responsive Social Sharing Buttons 8.2

Same name and namespace in other branches
  1. 7.2 includes/rrssb.drush.inc \rrssb_drush_command()
  2. 7 includes/rrssb.drush.inc \rrssb_drush_command()

Implements hook_drush_command().

File

includes/rrssb.drush.inc, line 13
Provides drush commands for Ridiculously Responsive Social Share Buttons.

Code

function rrssb_drush_command() {
  $items['rrssb-plugin'] = [
    'description' => dt("Downloads the Ridiculously Responsive Social Share Buttons Plus library from Github."),
    'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
    'aliases' => [
      'rrssbdl',
    ],
  ];
  $items['rrssb-gen-css'] = [
    'description' => dt("Regenerate rrssb.buttons.css in RRSSB+ library."),
    'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
  ];
  return $items;
}