You are here

function fckeditor_help in FCKeditor - WYSIWYG HTML editor 6.2

Same name and namespace in other branches
  1. 5.2 fckeditor.module \fckeditor_help()
  2. 5 fckeditor.module \fckeditor_help()
  3. 6 fckeditor.module \fckeditor_help()

Implementation of hook_help().

This function delegates execution to fckeditor_help_delegate() in fckeditor.help.inc to lower the amount of code in fckeditor.module

File

./fckeditor.module, line 54
FCKeditor - The text editor for Internet - http://www.fckeditor.net Copyright (C) 2003-2008 Frederico Caldeira Knabben

Code

function fckeditor_help($path, $arg) {
  module_load_include('help.inc', 'fckeditor');
  return module_invoke('fckeditor', 'help_delegate', $path, $arg);
}