function ckeditor_drush_command in CKEditor - WYSIWYG HTML editor 7
Same name and namespace in other branches
- 6 includes/ckeditor.drush.inc \ckeditor_drush_command()
Implements hook_drush_command().
File
- includes/
ckeditor.drush.inc, line 30 - CKEditor - The text editor for the Internet - http://ckeditor.com Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
Code
function ckeditor_drush_command() {
$items['ckeditor-download'] = array(
'callback' => 'ckeditor_drush_download',
'description' => dt('Downloads the required CKEditor library.'),
'arguments' => array(
'path' => dt('Optional. The path to the download folder. If omitted, Drush will use the default location (sites/all/libraries/ckeditor).'),
),
);
return $items;
}