您在這裡

這個'node_example.module' 是drupal5的嗎?

少东家's 的頭像
少东家 在 2007-01-12 (週五) 14:50 發表

http://api.drupal.org/api/HEAD/file/developer/examples/node_example.module

function node_example_help($section) {
$output = '';
switch ($section) {
case 'admin/modules#description':
// This description is shown in the listing at admin/modules.
$output = ''. t('An example module showing how to define a custom node type.').'';
break;
}
return $output;
}

看著怎麽像drupal4的語法啊?
比如這一段,在頁面上哪裏能看到?