You are here

function shouts_menu in Heartbeat 6.4

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

Implementation of hook_menu().

File

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

Code

function shouts_menu() {
  $items['shout/post'] = array(
    'title' => 'Shout',
    'description' => 'Make a shout',
    'access arguments' => array(
      'make shout',
    ),
    'page callback' => 'shouts_shout_form_submit',
    'type' => MENU_CALLBACK,
  );
  return $items;
}