Implementation of hook_menu question

  1. function bd_menu() {
  2.   $items['bd/foo'] = array(
  3.     'title' => 'Foo',
  4.     'page callback' => 'bd_foo',
  5.     'access arguments' => array('view birthdays'),
  6.     'type' => MENU_CALLBACK,
  7.   );
  8.  
  9.    return $items;
  10.  
  11. }
  12.  
  13.  
  14. function bd_foo() {
  15.   return '<p>'. t('The quick brown fox jumps over the lazy dog.') .'</p>';
  16. }