You are here

function wysiwyg_help in Wysiwyg 7.2

Same name and namespace in other branches
  1. 5.2 wysiwyg.module \wysiwyg_help()
  2. 5 wysiwyg.module \wysiwyg_help()
  3. 6.2 wysiwyg.module \wysiwyg_help()
  4. 6 wysiwyg.module \wysiwyg_help()

Implementation of hook_help().

File

./wysiwyg.module, line 200

Code

function wysiwyg_help($path, $arg) {
  switch ($path) {
    case 'admin/config/content/wysiwyg':
      $output = '<p>' . t('A Wysiwyg profile is associated with a text format. A Wysiwyg profile defines which client-side editor is loaded with a particular text format, what buttons or themes are enabled for the editor, how the editor is displayed, and a few other editor-specific functions.') . '</p>';
      return $output;
  }
}