私はdrupalを初めて使用し、現在drupal7を学習しています。
私はdrupal7の本を参照しています
私は最初のカスタムモジュールを作成しようとしていました
この本では、次のいずれかのディレクトリにモジュールを作成できると記載されていました
1)/ sites / all / modules
2)/ sites / default / modules
私のモジュールの名前が最初です
/ sites / default / modules/firstにモジュールを作成しました
このディレクトリには2つのファイルがあります
1)first.info
2)first.module
最初の.infoファイルの内容は
;$Id$
name = First
description = A first module.
package = Drupal 7 Development
core = 7.x
files[] = first.module
;dependencies[] = autoload
;php = 5.4
fisrt.moduleファイルの内容は
<?php
// $Id$
/**
* @file
* A module exemplifying Drupal coding practices and APIs.
*
* This module provides a block that lists all of the
* installed modules. It illustrates coding standards,
* practices, and API use for Drupal 7.
*/
/**
* Implements hook_help().
*/
function first_help($path, $arg) {
if ($path == 'admin/help#first') {
return t('A demonstration module.');
}
}
?>
モジュールのリストを確認しようとすると、作成したモジュールが表示されません
キャッシュをクリアするのに疲れましたが、チェックしても表示されません
誰かが私が間違っているところを教えてもらえますか?
前もって感謝します