function ckeditor_drush_command in CKEditor - WYSIWYG HTML editor 6
Same name and namespace in other branches
- 7 includes/ckeditor.drush.inc \ckeditor_drush_command()
Implements hook_drush_command().
File
- includes/
ckeditor.drush.inc, line 44 - 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 from svn.ckeditor.com.'),
'arguments' => array(
'path' => dt('Optional. The path to the download folder. If omitted, Drush will use the default location (<code>sites/all/libraries/ckeditor</code>).'),
),
);
return $items;
}