function editor_menu_alter

Implements hook_menu_alter().

Rewrites the menu entries for filter module that relate to the configuration of text editors.

File

drupal/core/modules/editor/editor.module, line 42
Adds bindings for client-side "text editors" to text formats.

Code

function editor_menu_alter(&$items) {
  $items['admin/config/content/formats']['title'] = 'Text formats and editors';
  $items['admin/config/content/formats']['description'] = 'Configure how user-contributed content is filtered and formatted, as well as the text editor user interface (WYSIWYGs or toolbars).';
}