You are here

function tinymce_menu in TinyMCE 6.2

Same name and namespace in other branches
  1. 5.2 tinymce.module \tinymce_menu()
  2. 5 tinymce.module \tinymce_menu()
  3. 6 tinymce.module \tinymce_menu()

Implementation of hook_menu().

File

./tinymce.module, line 13
Integrate the TinyMCE editor (http://tinymce.moxiecode.com/) into Drupal.

Code

function tinymce_menu() {
  $items['admin/settings/tinymce'] = array(
    'title' => 'TinyMCE',
    'description' => 'Configure the rich editor.',
    'page callback' => 'tinymce_admin',
    'access arguments' => array(
      'administer tinymce',
    ),
    'file' => 'tinymce.admin.inc',
  );
  return $items;
}