You are here

function wysiwyg_nicedit_settings_form in Wysiwyg 7.2

Same name and namespace in other branches
  1. 6.2 editors/nicedit.inc \wysiwyg_nicedit_settings_form()

Enhances the editor profile settings form for NicEdit.

See also

http://wiki.nicedit.com/w/page/515/Configuration%20Options

1 string reference to 'wysiwyg_nicedit_settings_form'
wysiwyg_nicedit_editor in editors/nicedit.inc
Plugin implementation of hook_editor().

File

editors/nicedit.inc, line 55
Editor integration functions for NicEdit.

Code

function wysiwyg_nicedit_settings_form(&$form, &$form_state) {
  $form['basic']['language']['#access'] = FALSE;

  // NicEdit only supports loading a single stylesheet, and only in FF2.
  // This essentially means we're dropping stylesheet support for NiceEdit.
  $form['css']['#access'] = FALSE;
}