You are here

function modr8_theme in modr8 6

Same name and namespace in other branches
  1. 7 modr8.module \modr8_theme()

Implementation of hook_theme().

File

./modr8.module, line 295
Easy dedicated content moderation

Code

function modr8_theme() {
  return array(
    'modr8_message' => array(
      'arguments' => array(
        'teaser',
        'nodetype',
        'op',
      ),
    ),
    'modr8_form' => array(
      'arguments' => array(
        'form',
      ),
    ),
    'moderation_event' => array(
      'arguments' => array(
        'event',
      ),
    ),
    'modr8_note' => array(
      'arguments' => array(
        'note',
      ),
    ),
  );
}