You are here

function editor_note_theme in Editor Notes 7

Implements hook_theme().

File

./editor_note.module, line 137
Main functionality for Editor Notes module.

Code

function editor_note_theme() {
  return array(
    'editor_note_message' => array(
      'variables' => array(
        'field_name' => NULL,
        'message_text' => NULL,
        'message_type' => NULL,
      ),
    ),
  );
}