You are here

function mobile_number_drush_command in Mobile Number 7

Implements hook_drush_command().

File

./mobile_number.drush.inc, line 11
Drush integration for Mobile Number module.

Code

function mobile_number_drush_command() {
  $items['libphonenumber-download'] = array(
    'description' => dt('Downloads the libphonenumber library from https://github.com/giggsey/libphonenumber-for-php.'),
    'arguments' => array(
      'path' => dt('Path to the download folder. This path is relative to the Drupal root. If omitted Drush will use the default location (sites/all/libraries/libphonenumber).'),
    ),
  );
  return $items;
}