LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Programming (https://www.linuxquestions.org/questions/programming-9/)
-   -   drupal 5.x hook menu question (https://www.linuxquestions.org/questions/programming-9/drupal-5-x-hook-menu-question-704239/)

frieza 02-12-2009 01:31 PM

drupal 5.x hook menu question
 
is anyone here familiar with developing drupal 5.x modules?
hook_menu should be a simple assignment of values to an array that gets returned to the drupal core, but this does not work, if anyone knows what i'm missing, a pointer would be helpful ;)
Code:

function options_menu($may_cache) {
  $items=array();
if (!$may_cache) {
    $items[] = array(
      'path' => 'node/6542',
      'title' => 'Salesman Panel',
      'access' => TRUE,
      'type' => MENU_NORMAL_ITEM
);
}   
//var_dump($items);
return $items;
}


frieza 02-12-2009 04:01 PM

nvm i figured it out ;)


All times are GMT -5. The time now is 01:04 AM.