阅读:3540回复:0
创建 Drupal 安装配置文件
<div class="field-items"><div class="field-item even"> Drupal 的安装配置文件位于 Drupal 安装目录下的 profiles 目录中,以 example.profiles 的形式进行命名,一个典型的安装配置文件包含以下函数:
注意:本文使用 example 做为示例用的安装配置文件名称,在创建你自己的安装配置文件时,请更改为你的安装配置文件名称,如 drupal_corporate,等等。 1. example_profile_modules() - 必备 此函数定义了使用安装配置文件时,Drupal 要启用的模块以及模块的启用顺序。定义在此函数中的模块,如果存在,将会依次被调用 .install 文件进行启用。注意必须在安装配置文件中启用 'system', 'block' 等系统模块,为了保证模块启用的正确性,复制 profiles/default/default.profile 做为编写 profile 的范本,是推荐的方法。 注意事项:http://drupal.org/node/67921 2. myprofile_profile_detail() - 必备 3. example_profile_task_list() -(可选) <div class="codeblock geshifilter"><span style="color: #000000"> <span style="color: #0000BB"> |
|