You are here

function shouts_theme in Heartbeat 6.3

Same name and namespace in other branches
  1. 6.4 modules/shouts/shouts.module \shouts_theme()

Implementation of hook_theme().

File

modules/shouts/shouts.module, line 19
Gives the possibility to the user to shout a message.

Code

function shouts_theme($existing, $type, $theme, $path) {
  return array(
    'shoutform_message' => array(
      'arguments' => array(
        'latest_shout' => NULL,
      ),
    ),
  );
}