function fckeditor_menu in FCKeditor - WYSIWYG HTML editor 5
Same name and namespace in other branches
- 5.2 fckeditor.module \fckeditor_menu()
- 6.2 fckeditor.module \fckeditor_menu()
- 6 fckeditor.module \fckeditor_menu()
File
- ./
fckeditor.module, line 113 - FCKeditor Module for Drupal 5.x
Code
function fckeditor_menu($may_cache) {
if ($may_cache) {
$items[] = array(
'path' => 'admin/settings/fckeditor',
'title' => t('FCKeditor'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'fckeditor_settings_form',
),
'access' => user_access('administer site configuration'),
'description' => t("Enables the usage of FCKeditor (WYSIWYG editor) instead of plain text fields."),
);
}
return $items;
}