PHP 帮助函数创建内容类型

Posted

tags:

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

/**
 * Helper function to create a content type.
 *
 * @param $properties
 *   An array with node type properties, that override the default ones.
 */
function _create_content_type($properties) {
  $default = array(
    'type' => '',
    'name' => t(''),
    'module' => 'node',
    'description' => t(''),
    'custom' => TRUE,
    'modified' => TRUE,
    'locked' => FALSE,
  );

  $type = array_merge($default, $properties);
  $type = (object) _node_type_set_defaults($type);
  node_type_save($type);
}

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

PHP 是不是具有在给定有效内容类型的情况下返回正确文件扩展名的函数?

PHP中实现函数重载

php: 帮助函数 array_get 的扩展实现方式

从 header() 获取 PHP 内容类型

wordpress wp_list_pages 帮助

Drupal 7根据内容类型无法正常创建自定义模板