function editor_menu

Implements hook_menu().

File

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

Code

function editor_menu() {

  // @todo Remove this menu item in http://drupal.org/node/1954892 when theme
  //   callbacks are replaced with something else.
  $items['editor/%/%/%/%/%'] = array(
    'route_name' => 'editor_field_untransformed_text',
    'theme callback' => 'ajax_base_page_theme',
  );
  return $items;
}