You are here

function sheetnode_ckeditor_menu in Sheetnode 7.2

Same name and namespace in other branches
  1. 6 modules/sheetnode_ckeditor/sheetnode_ckeditor.module \sheetnode_ckeditor_menu()
  2. 7 modules/sheetnode_ckeditor/sheetnode_ckeditor.module \sheetnode_ckeditor_menu()

Implementation of hook_menu().

File

modules/sheetnode_ckeditor/sheetnode_ckeditor.module, line 42
Module file for the sheetnode_ckeditor module.

Code

function sheetnode_ckeditor_menu() {
  $items = array();
  $items['admin/config/content/sheetnode/ckeditor'] = array(
    'title' => 'CKEditor',
    'access arguments' => array(
      'administer site configuration',
    ),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      '_sheetnode_ckeditor_settings',
    ),
    'description' => 'Administer settings for Sheetnode CKEditor.',
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}