You are here

function wysiwyg_theme in Wysiwyg 6

Same name and namespace in other branches
  1. 6.2 wysiwyg.module \wysiwyg_theme()
  2. 7.2 wysiwyg.module \wysiwyg_theme()

Implementation of hook_theme().

File

./wysiwyg.module, line 26
Integrate client-side editors with Drupal.

Code

function wysiwyg_theme() {
  return array(
    'wysiwyg_profile_overview' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'wysiwyg_admin_button_table' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}