function editor_quickedit_editor_info in Editor 7
Implements hook_quickedit_editor_info().
See also
Drupal 8's \Drupal\quickedit\Plugin\InPlaceEditorManager.
Drupal 8's \Drupal\quickedit\Plugin\InPlaceEditorInterface.
File
- ./
editor.quickedit.inc, line 14 - Quick Edit hooks implemented by the Editor module.
Code
function editor_quickedit_editor_info() {
$path = drupal_get_path('module', 'editor') . '/InPlaceEditors';
return array(
'ckeditor' => array(
'alternativeTo' => array(
'plain_text',
),
'file' => $path . '/CKEditor.php',
'class' => 'CKEditor',
),
);
}