function wysiwyg_ckeditor_install_note in Wysiwyg 7.2
Same name and namespace in other branches
- 5.2 editors/ckeditor.inc \wysiwyg_ckeditor_install_note()
- 6.2 editors/ckeditor.inc \wysiwyg_ckeditor_install_note()
Return an install note.
2 string references to 'wysiwyg_ckeditor_install_note'
- hook_INCLUDE_editor in ./
wysiwyg.api.php - Define a Wysiwyg editor library.
- wysiwyg_ckeditor_editor in editors/
ckeditor.inc - Plugin implementation of hook_editor().
File
- editors/
ckeditor.inc, line 147 - Editor integration functions for CKEditor.
Code
function wysiwyg_ckeditor_install_note() {
$output = '<p class="warning">' . t('Do NOT download the "CKEditor for Drupal" edition.') . '</br>';
$output .= t('Make sure you install the full package as not all plugins work with the standard package.') . '</p>';
return $output;
}