function bueditor_theme in BUEditor 7
Same name and namespace in other branches
- 6.2 bueditor.module \bueditor_theme()
- 6 bueditor.module \bueditor_theme()
Implements hook_theme().
File
- ./
bueditor.module, line 61 - Implements the necessary hooks for the editor to work properly.
Code
function bueditor_theme() {
$theme['bueditor_admin'] = array(
'function' => 'bueditor_admin_theme',
'render element' => 'form',
);
$theme['bueditor_editor'] = array(
'function' => 'bueditor_editor_theme',
'render element' => 'form',
);
return $theme;
}