PHP 帮助函数创建内容字段(CCK字段)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 帮助函数创建内容字段(CCK字段)相关的知识,希望对你有一定的参考价值。

/**
 * Helper function to create a content field (CCK field).
 *
 * @param $type_name
 *   The content type for which the content field should be created.
 * @param $properties
 *   An array with field type properties, that override the default ones.
 */
function _create_content_field($type_name, $properties) {
  $default = array(
    'label' => 'A field label', // Override in $properties
    'widget_type' => '',  // Override in $properties
    'op' => 'Create field',
    'submit' => 'Create field',
    'locked' => FALSE,
    'field_name' => '', // Override in $properties, lowercase underscore
  );

  $new_field = array_merge($default, $properties);
  $new_field['type_name'] = $type_name;

  _content_admin_field_add_new_submit('_content_admin_field_add_new', $new_field);
}

以上是关于PHP 帮助函数创建内容字段(CCK字段)的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 CCK API 创建节点引用字段?

具有节点引用和 cck3 多组字段的 Drupal 视图

如何在没有节点引用字段的情况下加入两个 Drupal CCK 内容类型?

从视图列表中更改 CCK 字段值

使用 cck 计算字段在 2 个节点之间复制 cck 字段的内容时出错

Drupal CC/Views - CCK 中未显示新字段