the info file is right,the following is my module file code. when i access the http://localhost/drupal/mymenu why it can't work.

  <?php
 function mymenu(){
    $item = array();
  $item['mymenu'] = array(
       'description'=>'test1',
      'page callback'=>'mymenu_test',
      'access arguments' => array('access mymenu'),
     'type'=>MENU_CALLBACK,
 );
 return $item;
 }

  function mymenu_perm(){
   return array('access mymenu');
  }

 function mymenu_test() {
 $output = 'hello world';
 return $output;
}

i have gave the 'access mymenu' permission to the anonymous.

link|improve this question

70% accept rate
feedback

3 Answers

up vote 3 down vote accepted

It should be

function mymenu_menu() { ... }

You don't need the $item = array(); there also.

link|improve this answer
you're right,thank you. – runeveryday Nov 16 '10 at 10:51
feedback

whenever you see a api function with hook_something, you have to replace the 'hook' part with the name of your module

in this case it's indeed mymenu_menu

link|improve this answer
got it,thank you. – runeveryday Nov 16 '10 at 10:53
feedback

you need to flush menu cache(at least two times in drupal 7) after adding menu item with hook_menu.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.