You are here

function fckeditor_menu in FCKeditor - WYSIWYG HTML editor 5

Same name and namespace in other branches
  1. 5.2 fckeditor.module \fckeditor_menu()
  2. 6.2 fckeditor.module \fckeditor_menu()
  3. 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;
}