You are here

function wysiwyg_theme in Wysiwyg 6.2

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

Implementation of hook_theme().

See also

drupal_common_theme(), common.inc

template_preprocess_page(), theme.inc

File

./wysiwyg.module, line 86
Integrates 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,
      ),
    ),
    'wysiwyg_dialog_page' => array(
      'arguments' => array(
        'content' => NULL,
        'show_messages' => TRUE,
      ),
      'file' => 'wysiwyg.dialog.inc',
      'template' => 'wysiwyg-dialog-page',
    ),
  );
}