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