You are here

function ckeditor_help in CKEditor - WYSIWYG HTML editor 7

Same name and namespace in other branches
  1. 6 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 208
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);
}