function ckeditor_help in CKEditor - WYSIWYG HTML editor 6
Same name and namespace in other branches
- 7 ckeditor.module \ckeditor_help()
Implementation of hook_help().
This function delegates the execution to ckeditor_help_delegate() in includes/ckeditor.page.inc to lower the amount of code in ckeditor.module.
File
- ./
ckeditor.module, line 71 - CKEditor - The text editor for the Internet - http://ckeditor.com Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
Code
function ckeditor_help($path, $arg) {
module_load_include('inc', 'ckeditor', 'includes/ckeditor.page');
return module_invoke('ckeditor', 'help_delegate', $path, $arg);
}