1 ckeditor.module | ckeditor_menu() |
Implements hook_menu().
File
- core/
modules/ ckeditor/ ckeditor.module, line 12 - Provides integration with the CKEditor 4 WYSIWYG editor.
Code
function ckeditor_menu() {
$items['ckeditor/upload/image/%filter_format'] = array(
'title' => 'Upload image',
'page callback' => 'ckeditor_image_upload',
'page arguments' => array(3),
'access callback' => 'filter_dialog_access',
'access arguments' => array(3, 'image'),
'theme callback' => 'ajax_base_page_theme',
'delivery callback' => 'backdrop_json_deliver',
'type' => MENU_CALLBACK,
'file' => 'ckeditor.pages.inc',
);
return $items;
}