1 ckeditor5.module | ckeditor5_telemetry_info() |
Implements hook_telemetry_info().
File
- core/
modules/ ckeditor5/ ckeditor5.module, line 200 - Provides integration with the CKEditor WYSIWYG editor.
Code
function ckeditor5_telemetry_info() {
$info['ckeditor5_version'] = array(
'label' => t('CKEditor 5 Version'),
'description' => t('The current version of CKEditor 5 in use.'),
'project' => 'backdrop',
);
return $info;
}