You are here

function wysiwyg_yui_install_note in Wysiwyg 6.2

Same name and namespace in other branches
  1. 7.2 editors/yui.inc \wysiwyg_yui_install_note()

Return an install note.

1 string reference to 'wysiwyg_yui_install_note'
wysiwyg_yui_editor in editors/yui.inc
Plugin implementation of hook_editor().

File

editors/yui.inc, line 72
Editor integration functions for YUI editor.

Code

function wysiwyg_yui_install_note($editor) {
  $output = '<p class="warning">' . $editor['deprecation message'] . '</p>';
  $output .= '<p class="warning">' . t('YUI 3 is not supported because it does not contain a complete editor.') . '</p>';
  return $output;
}