Drupal 8表单元素与#autocreate分类术语

时间:2016-09-05 10:56:36

标签: php drupal drupal-8

我使用表单制作模块,使用自动完成字段:

    $form['field_taxonomy_tags'] = [
       '#type' => 'entity_autocomplete',
       '#target_type' => 'taxonomy_term',
       '#selection_settings' => [
           'target_bundles' => array('tags'),
       ],
        '#autocreate' => array(
          'target_bundles' => array('tags'),
          'bundle' => ('tags'),
        ),
       '#title' => ('tags'),
        '#tags' => TRUE,
     ];

自动完成工作正常,我可以轻松地从标签词汇表添加分类术语。但我认为#autocreate选项存在一些问题。已搜索所有文档,并在drupal核心内编码。永远不会创建实体; / 当我试图从这个领域获得价值时,我的浏览器已经死了......有一些实体类型变量,但是很大。

经过一些调试后,我找到了让它运转的方法,但我对此并不高兴:)很奇怪,也许有些人可以帮我找到更好的方法吗?

  public function submitForm(array &$form, FormStateInterface $form_state) {
    $tags = $form_state->getValue('field_taxonomy_tags');
    foreach ($tags as $tag)
    {
        if(is_object($tag['entity']))
        {
            $tag['entity']->save();
        }
    }
  }

正如您所看到的,我需要手动保存这些标签,不知道原因; /​​如果没有它,则没有创建术语。

1 个答案:

答案 0 :(得分:1)

这是更好的方式。我不需要保存每个标签,如果我们将它们附加到节点就足够了。它的实体对象,可以作为节点值传递,然后,将创建所有标记:

  $node = Node::create(array(
      'type' => 'YOUR_content_type',
      'title' => $form_state->getValue('title')
  ));
  $fieldNames = array_keys($node->getFieldDefinitions());
  $values = $form_state->getValues();
  // be aware with that, i use this loop for testing because i have same names
  // you can use $node->set('content type field name', $value); directly without any field definitions
  foreach ($values as $key=>$value)
  {
      if(in_array($key, $fieldNames))
      {
          $node->set($key, $value);
      }
  }
  // here we save all data, taxonomy entities too
  $node->save();