标签:
YAML 文件是新引入的重要项目文件,在 Drupal 8 中,无论是模块、主题还是安装配置文件,都需要 .info.yml 文件来为其存储项目相关的基础信息。
在 Drupal 中,.info.yml 文件通常会被作为以下用途进行使用:
以下是一个简单的 hello_world.info.yml 文件,你可以在本地模块目录(/modules/custom 或 /sites/all/modules/custom)下新建 hello_world 目录,并将包含下方内容到 hello_world.info.yml 文件放置到模块目录中:
name: Hellow World Module
description: Creates a page showing “Hello World”
package: Example
type: module
core: 8.x
除了上述例子中属性设置项外,项目信息文件还包含其它一些可选的属性,具体可参考以下代码:
name: Hello World Module
description: Creates a page showing "Hello World".
package: Custom
type: module
core: 8.x
dependencies:
- datetime
- link
- views
configure: hello_world.settings
hidden: true
# Note: do not add the ‘version‘ property yourself!
# It will be added automatically by the packager on drupal.org.
version: 1.0
YAML文件中的配置项都足够语义化,单从字面便能理解其含义。如果曾有过 Drupal 相关的开发经验,理解 Drupal 8 中的 YAML 配置文件就更简单了。
原文标题:Drupal8开发教程:认识.info.yml文件
原文地址:http://drupalct.org/drupal-development/learn-drupal8-info-yaml-file.html
标签:
原文地址:http://www.cnblogs.com/tanjede/p/5176949.html