You are here

function kaltura_drush_command in Kaltura 7.3

Same name and namespace in other branches
  1. 7.2 kaltura.drush.inc \kaltura_drush_command()

Implements hook_drush_command().

File

./kaltura.drush.inc, line 17
Drush integration for kaltura.

Code

function kaltura_drush_command() {
  $items['kaltura-client-install'] = array(
    'callback' => 'drush_kaltura_client_install',
    'description' => dt('Download and install the Kaltura client library.'),
    'bootstrap' => DRUSH_BOOTSTRAP_NONE,
    'arguments' => array(
      'path' => dt('Optional. A path where to install the Kaltura client library. If omitted Drush will use the default location.'),
    ),
  );
  return $items;
}