function kaltura_drush_command in Kaltura 7.2
Same name and namespace in other branches
- 7.3 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;
}