1 ckeditor5.install ckeditor5_enable()

Implements hook_enable().

File

core/modules/ckeditor5/ckeditor5.install, line 46
Install, update and uninstall functions for CKEditor module.

Code

function ckeditor5_enable() {
  if (module_exists('ckeditor')) {
    backdrop_set_message(t('To upgrade text formats from CKEditor 4 to CKEditor 5, visit the <a href="!url">text editors and formats configuration</a> and configure each text format that uses CKEditor 4.', array(
      '!url' => url('admin/config/content/formats'),
    )), 'info');
  }
}