diff --git a/core/modules/ckeditor/ckeditor.module b/core/modules/ckeditor/ckeditor.module old mode 100644 new mode 100755 index 4ca9956..33f6adb --- a/core/modules/ckeditor/ckeditor.module +++ b/core/modules/ckeditor/ckeditor.module @@ -6,6 +6,24 @@ */ /** + * Implements hook_help(). + */ +function ckeditor_help($path, $arg) { + switch ($path) { + case 'admin/help#ckeditor': + $output = ''; + $output .= '

' . t('About') . '

'; + $output .= '

' . t('The CKEditor module enables CKEditor for Drupal, using the framework provided by the Text Editor module. CKEditor is a visual HTML editor, often referred to as a WYSIWYG editor. It allows creating formatted content simply by using toolbar buttons instead of HTML tags, just like common word processors do. CKEditor requires JavaScript to be enabled in the browser. For more information, see the online documentation for the CKEditor module.', array('@cke_url'=>'http://ckeditor.com', '@text_editor' => '/admin/help/editor')) . '

'; + $output .= '

' . t('Uses') . '

'; + $output .= '
'; + $output .= '
' . t('Enabling and configuring CKEditor') . '
'; + $output .= '
' . t('CKEditor can be enabled for text formats on the Text formats and editors, You can configure the buttons CKEditor provides for each text format by dragging them into the preview of the CKEditor on the Text formats and editors page. For more information see the Text Editor module.', array('@formats'=>'/admin/config/content/formats','@text_editor' => '/admin/help/editor')) . '
'; + $output .= '
'; + return $output; + } +} + +/* * Implements hook_library_info(). */ function ckeditor_library_info() {