14

我正在 Drupal 8 中设计一个新模块。这是一个长期项目,至少几个月内不会公开,所以我用它来找出新的东西。

在这个模块中,我希望能够以编程方式创建节点。在 Drupal 7 中,我会通过创建对象,然后调用“node_submit”和“node_save”来做到这一点。

这些功能在 Drupal 8 中不再存在。相反,根据文档,“模块和脚本可以使用通常的表单 API 模式以编程方式提交节点。” 我不知所措。这是什么意思?我已经使用 Form API 在 Drupal 7 中创建表单,但我不明白文档在这里所说的内容。

我要做的是基于不直接从用户呈现的表单中获取的信息,以编程方式创建至少一个甚至可能多个新节点。我需要能够:

1) 指定内容类型

2)指定URL路径

3) 设置以前由现已过时的 node_object_prepare() 处理的任何其他必要变量

4) 提交新的节点对象

我希望能够在一个独立的、高度抽象的函数中做到这一点,而不是绑定到特定的块或形式。

那么我错过了什么?

4

5 回答 5

22

use Drupal\node\Entity\Node;

$node = Node::create(array(
    'type' => 'your_content_type',
    'title' => 'your title',
    'langcode' => 'en',
    'uid' => '1',
    'status' => 1,
    'field_fields' => array(),
));

$node->save();

于 2015-08-05T04:56:59.723 回答
6

devel/devel_generate 模块的 D8 版本就是一个很好的例子。

devel_generate

  $edit_node = array(
    'nid' => NULL, 
    'type' => $node_type, 
    'uid' => $users[array_rand($users)], 
    'revision' => mt_rand(0, 1), 
    'status' => TRUE, 
    'promote' => mt_rand(0, 1), 
    'created' => REQUEST_TIME - mt_rand(0, $results['time_range']), 
    'langcode' => devel_generate_get_langcode($results),
  );
  if ($type->has_title) {
    // We should not use the random function if the value is not random
    if ($results['title_length'] < 2) {
      $edit_node['title'] = devel_create_greeking(1, TRUE);
    }
    else {
      $edit_node['title'] = devel_create_greeking(mt_rand(1, $results['title_length']), TRUE);
    }
  }
  else {
    $edit_node['title'] = '';
  }
  // @todo Remove once comment become field. http://drupal.org/node/731724
  if (Drupal::moduleHandler()->moduleExists('comment')) {
    $edit_node['comment'] = variable_get('comment_' . $node_type, COMMENT_NODE_OPEN);
  }
  $node = entity_create('node', $edit_node);

使用格式化文本

在代码行之前/之后使用 grep 帮助我弄清楚如何使用“full_html”添加节点。

用这个搜索 Drupal 核心代码:

$ cd drupal/core
$ grep -B 5 -A 5 -r entity_create.*node * > /tmp/temp-grep.txt

然后,在文本编辑器中打开 /tmp/temp-grep.txt。在那里戳一下,你会看到:

--
modules/editor/src/Tests/EditorFileUsageTest.php-    $body_value .= '<img src="awesome-llama.jpg" data-editor-file-uuid="invalid-editor-file-uuid-value" />';
modules/editor/src/Tests/EditorFileUsageTest.php-    // Test handling of a non-existing UUID.
modules/editor/src/Tests/EditorFileUsageTest.php-    $body_value .= '<img src="awesome-llama.jpg" data-editor-file-uuid="30aac704-ba2c-40fc-b609-9ed121aa90f4" />';
modules/editor/src/Tests/EditorFileUsageTest.php-    // Test editor_entity_insert(): increment.
modules/editor/src/Tests/EditorFileUsageTest.php-    $this->createUser();
modules/editor/src/Tests/EditorFileUsageTest.php:    $node = entity_create('node', array(
modules/editor/src/Tests/EditorFileUsageTest.php-      'type' => 'page',
modules/editor/src/Tests/EditorFileUsageTest.php-      'title' => 'test',
modules/editor/src/Tests/EditorFileUsageTest.php-      'body' => array(
modules/editor/src/Tests/EditorFileUsageTest.php-        'value' => $body_value,
modules/editor/src/Tests/EditorFileUsageTest.php-        'format' => 'filtered_html',
--

请注意“body”现在如何变成具有“值”和“格式”的数组。

于 2014-11-18T22:36:27.297 回答
6

RE:不推荐使用的实体创建

这是一个没有弃用函数的简短示例。这对于动态创建特别有用:

//define entity type and bundle
$entity_type="node";
$bundle="article";

//get definition of target entity type
$entity_def = \Drupal::entityManager()->getDefinition($entity_type);

//load up an array for creation
$new_node=array(
  //set title
  'title' => 'test node',

  //set body
  'body' => 'this is a test body, can also be set as an array with "value" and "format" as keys I believe',

  //use the entity definition to set the appropriate property for the bundle
  $entity_def->get('entity_keys')['bundle']=>$bundle
);

$new_post = \Drupal::entityManager()->getStorage($entity_type)->create($new_node);
$new_post->save();
于 2016-03-08T17:31:03.987 回答
4

通过使用核心服务在 Drupal 8 中创建节点的最佳方式

$node = \Drupal::entityTypeManager()->getStorage('node')->create([
  'type'       => 'content_type_machine_name',
  'field_text' => 'Foo',
  'title'      => 'Text Title',
]);
$node->save();
于 2018-10-17T14:38:32.800 回答
2

弄清楚了。对于遇到此问题的其他人,节点现在被视为实体,实体模块现在是核心的一部分。所以我的代码最终看起来像这样:

$new_page_values = array();
$new_page_values['type'] = 'my_content_type';
$new_page_values['title'] = $form_state['values']['page_title'];
$new_page_values['path'] = $new_page_path;

$new_page = entity_create('node', $new_page_values);
$new_page->save();
于 2014-06-12T16:18:32.753 回答