You are here

function bueditor_theme in BUEditor 6.2

Same name and namespace in other branches
  1. 6 bueditor.module \bueditor_theme()
  2. 7 bueditor.module \bueditor_theme()

Implementation of hook_theme().

File

./bueditor.module, line 50
Implements the necessary hooks for the editor to work properly.

Code

function bueditor_theme() {
  $theme['bueditor_admin']['function'] = 'bueditor_admin_theme';
  $theme['bueditor_editor']['function'] = 'bueditor_editor_theme';
  return $theme;
}