2014年1月15日水曜日

Drupalのモジュール作成。

Drupalのモジュール、モジュール名「custom」モジュールの作成。

まず、custom/custom.infoを作る。

sites/all/modules/custom/custom.info

-------------------------------------
name = custom
description = カスタムモジュール。
core = 7.x
package = Custom Module
-------------------------------------

次にcustom/custom.moduleを作る。
sites/all/modules/custom/custom.module

------------------------------------
<?php

/**
 * @file
 * カスタムモジュール。
 */
------------------------------------

0 件のコメント:

コメントを投稿