1

我的 drupal 项目中已经有一个内容类型。

我目前正在开发自己的模块,并想创建一个内置的内容类型。有没有办法将我直接在 drupal 中构建的内容类型转换为代码?一种内容类型代码生成器?

如果可能,我想自动生成此代码。

$t = get_t();

  // Define the node type.
  $slider = array(
    'type' => 'slider',
    'name' => $t('Slider Content'),
    'base' => 'node_content',
    'description' => $t('This is an example node type with a few fields.'),
    'body_label' => $t('Example Description')
  );

  // Complete the node type definition by setting any defaults not explicitly
  // declared above.
  // http://api.drupal.org/api/function/node_type_set_defaults/7
  $content_type = node_type_set_defaults($slider);
  node_add_body_field($content_type);

  // Save the content type
  node_type_save($content_type);

非常感谢。

4

2 回答 2

2

也许你应该看看Features 模块。使用功能应该允许您将内容类型以及添加的字段导出到您可以稍后安装到另一个站点的模块中。

检查此文档链接

于 2013-09-02T08:23:19.183 回答
0

也许这可以帮助你。

添加钩子安装():

请检查:http: //yaremchuk.ru/blog/how-create-content-type-drupal-7-programmatically

于 2013-09-02T02:41:16.423 回答