Drupal6.20で次のように簡単なモジュールを作成しようとしています。
<?php
function example_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('This module implements an example form.');
}
}
function example_menu($may_cache) {
$items = array();
if ($may_cache)
{
$items[] = array(
'path' => 'example',
'title' => t('Example'),
'callback' => 'example_page',
'access' => TRUE,
'type' => MENU_NORMAL_ITEM
);
}
return $items;
}
function example_page() {
return drupal_get_form('example_page_form');
}
function example_page_form() {
$form['fullname'] = array(
'#type' => 'textfield',
'#title' => t('Enter your full name'),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save'),
);
return $form;
}
function example_page_form_submit($form_id, $form_values) {
...some code
}
しかし、http://mysite.com/exampleと入力しているときはいつでも、404にリダイレクトされます。助けてください。私はDrupalテクノロジーに非常に慣れていません。.infoおよび.moduleファイルとは別に、これに必要なファイルは他にありますか?
ありがとう。