.MODULE 文件扩展名
Drupal Module File
| 开发者 | Drupal |
| 受欢迎程度 |
3.8 | 13 票 |
什么是 MODULE 文件?
Module file used by Drupal, a content management system (CMS) for websites; contains source code written in PHP; used for adding functionality to the base Drupal installation, such as new page layouts, calendar popups, login forms, and developer tools.
更多信息
MODULE files must have a corresponding .INFO file that tells Drupal about the module. The INFO file must have the same filename prefix as the MODULE file and must be located in the same directory. The files should be installed to the /modules/ directory, which is typically located at sites/mysite/modules/.
注: While .PHP files include a closing ?> PHP tag when the source code has ended, MODULE files do not.