You are here

function bueditor_theme in BUEditor 7

Same name and namespace in other branches
  1. 6.2 bueditor.module \bueditor_theme()
  2. 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;
}