diff --git a/core/modules/ckeditor/ckeditor.module b/core/modules/ckeditor/ckeditor.module index 6cab511..5b2bd34 100755 --- a/core/modules/ckeditor/ckeditor.module +++ b/core/modules/ckeditor/ckeditor.module @@ -13,11 +13,17 @@ function ckeditor_help($path, $arg) { 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 in semantically-correct and valid HTML, simply by using toolbar buttons (like in common word processors) instead of HTML tags. CKEditor requires JavaScript to be enabled in the browser. For more information, see the online documentation for the CKEditor module.', array( '@doc_url' => 'https://drupal.org/documentation/modules/ckeditor', '@cke_url'=>'http://ckeditor.com', '@text_editor' => url('admin/help/editor'))) . '

'; + $output .= '

' . t('The CKEditor module provides a toolbar for text fields that allow users to format content by using buttons instead of typing HTML tags, thereby creating semantically correct and valid HTML. CKEditor uses the framework provided by the Text Editor module. It requires JavaScript to be enabled in the browser. For more information, see the online documentation for the CKEditor module and the CKEditor website.', array( '@doc_url' => 'https://drupal.org/documentation/modules/ckeditor', '@cke_url'=>'http://ckeditor.com', '@text_editor' => url('/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 page. There you can also define which buttons are available in the toolbar of CKEditor. If the options "Display any HTML as plain text" or "Limit allowed HTML tags" are checked, then the buttons that generate disallowed HTML will be unavailable. If you choose to use the Styles button, you can provide a list of CSS classes that will be availabe to the user. For general instructions on how to configure editors, see the Text Editor module help page.', array('@formats' => url('admin/config/content/formats'),'@text_editor' => url('/admin/help/editor'))) . '
'; + $output .= '
' . t('Enabling CKEditor for individual text formats') . '
'; + $output .= '
' . t('CKEditor has to be enabled and configured separately for individual text formats from the Text formats and editors page because the filter settings for eact text format can be different. For more information, see the Text Editor and Filter help pages.', array('@formats' => url('/admin/config/content/formats'), '@text_editor' => url('/admin/help/editor'), '@filter' => url('/admin/help/filter'))) . '
'; + $output .= '
' . t('Configuring the toolbar') . '
'; + $output .= '
' . t('When the CKEditor is chosen from the Text editor drop-down menu, the toolbar configuration is displayed. You can add and remove buttons from the Active toolbar by dragging and dropping them, and additional rows can be added to organize the buttons.') . '
'; + $output .= '
' . t('Formatting and pasting content') . '
'; + $output .= '
' . t('CKEditor only allow users to format and paste content in accordance with the filter configuration of the specific text format. Formatting buttons for HTML tags that are not allowed, are not displayed to users when they edit a text field. For more information see the Filter help page.', array('@filter' => url('/admin/help/filter'))) . '
'; + $output .= '
' . t('Toggling between formatted text and HTML source') . '
'; + $output .= '
' . t('By clicking on the Source button, you can switch between formatted text and HTML source code. This enables users to type allowed HTML tags even if there are no buttons in the toolbar. After toggling back to the formatted text view the tagged text will be formatted accordingly.') . '
'; $output .= '
'; return $output; }