function editor_theme in Editor 7
Implements hook_theme().
File
- ./
editor.module, line 130 - Allows rich text fields to be edited using WYSIWYG client-side editors.
Code
function editor_theme() {
return array(
'editor_caption' => array(
'variables' => array(
'item' => NULL,
'caption' => '',
'attributes' => array(),
),
'file' => 'includes/editor.theme.inc',
),
);
}