douwu3763 2014-04-03 08:32
浏览 94
已采纳

Drupal - 找不到自定义模块的页面

I'm fairly new to Drupal and just made my first module wich shows a form. In the hook_menu(), I set $items['form'], as you can see below. While I navigate to mysite.com/form, it doesn't show me anything, except for the theme and: Page not found, The requested page "/form" could not be found.

I tried to clear my cache, to give my module a different name, made sure my module is enabled, nothing helps. Does anyone knows what the problem might be? The code from the .module file is right here:

<?php 

//implements hook_permission()
function form_example_permission() {
  return array(
    'Submit form_example' => array(
      'title' => t('Submit form_example'),
      'description' => t('Submit the form_example form'),
    ),
  );
}


//implements hook_menu()
function form_example_menu() {
  $items['form'] = array(
    'title' => 'My Example Form',
    'type' => MENU_NORMAL_ITEM,
    'acces' => TRUE,
    'page callback' => 'drupal_get_form()',
    'page arguments' => array('form_example_form'),
    'acces arguments' => array('acces content'),
  );

  return $items;
}

//implements hook_form()
function form_example_form($form, &$form_state) {
  $form['mynumber'] = array (
    '#type' => 'textfield',
    '#title' => t('My Number'),
    '#size' => 10,
    '#maxlength' => 10,
    '#required' => TRUE,
    '#description' => t('Please enter a valid number'),
  );

  $form['mytextfield'] = array(
    '#type' => 'textfield',
    '#title' => t('My Textfield'),
    '#size' => 60,
    '#maxlength' => 128,
    '#required' => TRUE,
  );

  $form['mytext'] = array(
    '#title' => t('My Textarea'),
    '#type' => 'textarea',
    '#description' => t('Enter some text'),
    '#default value' => '',
    '#required' => TRUE,
  );

  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Add item'),
  );

  return $form;
}
  • 写回答

2条回答 默认 最新

  • duandeng2265 2014-04-03 10:59
    关注

    'page callback' => 'drupal_get_form() is wrong, you need to remove brackets from function name. The right implementation will be page callback' => 'drupal_get_form. And also acces => TRUE is wrong, it must be 'access callback', and if you set fixed TRUE value then you don't need to specify access arguments key. Because access callback return TRUE anyway. For further reading..

    UPDATE: Example:

    function form_example_permission() {
      return array(
        'submit form_example' => array(
          'title' => t('Submit form_example'),
          'description' => t('Submit the form_example form'),
        ),
      );
    }
    
    
    //implements hook_menu()
    function form_example_menu() {
      $items['form'] = array(
        'title' => 'My Example Form',
        'type' => MENU_NORMAL_ITEM,
        'access callback' => 'user_access',
        'page callback' => 'drupal_get_form',
        'page arguments' => array('form_example_form'),
        'access arguments' => array('submit form_example'),
      );
    
      return $items;
    }
    

    (you had a typo in you code) Don't forget to flush the cache.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 (标签-python)
  • ¥15 第一个已完成,求第二个做法
  • ¥20 搭建awx,试了很多版本都有错
  • ¥15 java corba的客户端该如何指定使用本地某个固定IP去连接服务端?
  • ¥15 activiti工作流问题,求解答
  • ¥15 有人写过RPA后台管理系统么?
  • ¥15 Bioage计算生物学年龄
  • ¥20 如何将FPGA Alveo U50恢复原来出厂设置哇?
  • ¥50 cocos2d-x lua 在mac上接入lua protobuf?
  • ¥15 es 7.17.20版本生成时间戳