プログラムでノードを作成する


34

日付フィールドと画像フィールドを持つノードをプログラムで作成するにはどうすればよいですか?

Drupal 7で次のコードを使用して実行できることを知っています。

global $user;

  $node = new stdClass();
  $node->title = "YOUR TITLE";
  $node->type = "YOUR_NODE_TYPE";
  node_object_prepare($node); // Sets some defaults. Invokes hook_prepare() and hook_node_prepare().
  $node->language = LANGUAGE_NONE; // Or e.g. 'en' if locale is enabled
  $node->uid = $user->uid; 
  $node->status = 1; //(1 or 0): published or not
  $node->promote = 0; //(1 or 0): promoted to front page
  //image field
  $existing_filepath = "/home/nzcodarnoc/sites/default/files/imported/picture.jpg"
  $new_filepath = "public://picture.jpg"
  // Create the file object
  $drupal_file = file_save_data(file_get_contents($existing_filepath), $new_filepath);
  $drupal_file->alt = $node->title;
  $drupal_file->title = $node->title;
  // Assign the file object to the node, as an array
  $node->field_my_file[$node->language][0] = get_object_vars($drupal_file);
  //date field
  $node->birth_date[LANGUAGE_NONE][0]['value'] = time();  
  $node = node_submit($node); // Prepare node for saving
  node_save($node);

Drupal 8の同等のコードは何ですか?


このスレッドを確認してくださいdrupal.org/node/178506
Aryashree Pritikrishna

Node :: create($ node_data_array)-> save()
Eyal

@Eyalは詳細を提供してください。この質問は今後あまりにも多く参照される
ユセフ

回答:


56

次のコードは、新しいノードに画像を保存するのに役立ちます。

use \Drupal\node\Entity\Node;
use \Drupal\file\Entity\File;

// Create file object from remote URL.
$data = file_get_contents('https://www.drupal.org/files/druplicon.small_.png');
$file = file_save_data($data, 'public://druplicon.png', FILE_EXISTS_REPLACE);

// Create node object with attached file.
$node = Node::create([
  'type'        => 'article',
  'title'       => 'Druplicon test',
  'field_image' => [
    'target_id' => $file->id(),
    'alt' => 'Hello world',
    'title' => 'Goodbye world'
  ],
]);
$node->save();

詳細については、http://realityloop.com/blog/2015/10/08/programmatically-attach-files-node-drupal-8を参照してください。


この特定の例では、インターネットから画像ファイルを直接取得するため、\ Drupal \ file \ Entity \ Fileは必要ありません。しかし、このリンクrealityloop.com/blog/2015/10/08/…を見ると、使用されているFileエンティティの例が見つかります。//ローカルにコピーされたファイルからファイルオブジェクトを作成します。$ uri = file_unmanaged_copy( 'public://source.jpg'、 'public://destination.jpg'、FILE_EXISTS_REPLACE); $ file = File :: Create(['uri' => $ uri、]); $ file-> save();
-amitgoyal

サンプル画像は存在しません。これは:drupal.org/files/druplicon-small.png
KariKääriäinen17年

13

drupal 8では、エンティティはオブジェクトであるため、エンティティを作成することは、エンティティのタイプクラスのインスタンスを作成することです。エンティティのクラスがわかっている場合は、新しいキーワードまたはcreate関数を使用できます。

IE $foo = new Foo();または$foo = Foo::create();

エンティティのクラスがわからない場合(マシン名のみ)、Storageクラスのリクエストを次のように使用できます。 \Drupal::entityTypeManager()->getStorage($entity_type_id)->create();

エンティティのフィールドを設定する$entity->set($key, $value)には、エンティティオブジェクトのメソッドを使用するかkey=>value、エンティティコンストラクターに配列を渡します。など:

$foo = new Foo([
  'name'=>'bar',
  'baz'=> TRUE,
  'multi_value' => [
    'first',
    'second',
    'third',
  ]
]);

エンティティを保存する$entity->save()には、エンティティオブジェクトのメソッドを呼び出すだけです。

drupal 8のファイルもエンティティであるため、ファイルエンティティのIDまたは実際のファイルエンティティを値として渡す必要があります。

$file_1 = File::load(1);
$foo->set('bar_files', [
  $file_1,
  2
]);

特定のシナリオのコードは次のとおりです。

$node_entity_type = \Drupal::entityTypeManager()->getDefinition('node');
// The [file_save_upload][1] function returns an array of all the files that were saved.
$poster_images = file_save_upload($upload_name, $validators, $destination);
$node = new Node([
  $node_entity_type->getKey('bundle') => 'movie',
  $node_entity_type->getKey('label') => 'Foo',
  'field_release_date' => '1/1/2015',
  'field_poster_image' => $poster_images,
]);
$node->save();

1つの画像フィールドと1つの日付フィールドを追加し、このフィールドタイプで回答を提供します。
ユセフ

しかし、ノード作成時にDrupal 8でプログラムでテキストフィールドにデータを入力する方法は?
WM

$ node_dataのデータは、ノードフィールドに直接マップされます。field_bodyというフィールドにテキストを追加する場合は、キーfield_bodyを使用して別のエントリを追加します。
エアル

回答をより詳細に更新しました。どういたしまして。
エアル

1
私の答えは更新
エヤル

12

オブジェクト指向の方が便利だと思いますか?

use Drupal\node\Entity\Node;

$my_article = Node::create(['type' => 'article']);
$my_article->set('title', 'My article');
$my_article->set('field_text', 'My text');
$my_article->set('field_image', FID);
$my_article->set('field_user', UID);
$my_article->enforceIsNew();
$my_article->save();

7

最もクリーンな方法でテストしたい場合は、entity_type.managerサービスを使用してください:

$storage = $this->entityTypeManager->getStorage($entity_type_id);
$my_entity = $storage->create([
   ....
]);

Node::create関数の問題、それは静的な呼び出しであるため、クラスを実際に単体テストすることはできません。可能な場合は常に静的呼び出しを行わないでください。コードが読みやすくなります(依存関係が明確になるため)。


3

イメージ付きのノードを作成する別の方法は次のとおりです。

use \Drupal\file\Entity\File;

// Create file object from remote URL.
$data = file_get_contents('https://www.drupal.org/files/druplicon.small_.png');
$file = file_save_data($data, 'public://druplicon.png', FILE_EXISTS_REPLACE);

$node = \Drupal::entityTypeManager()->getStorage('node')->create(array(
  'type'        => 'article',
  'title'       => 'Druplicon test',
  'field_image' => [
    'target_id' => $file->id(),
    'alt' => 'Hello world',
    'title' => 'Goodbye world'
  ],
));
$node->save();

2

次のコードは私のために働いています

use \Drupal\node\Entity\Node;
use \Drupal\file\Entity\File;

$node = entity_create('node', array(
'type' => 'article',
'title' => $form_state->getValue('title'),
'body' => array(
'value' => $form_state->getValue('body'),
'format' => 'basic_html',
),
'uid' => $uid,
));
$node->save();

1
entity_createが廃止されました
エヤル

また、$form_state特定のコンテキストでのみ使用可能です。そうしないと、アクセスできません。
キアムルノ

0
use Drupal\Core\Language\Language;


$definition = \Drupal::entityTypeManager()->getDefinition('node');
$values = [
    $definition->getKey('bundle') => 'basic_page',
    'langcode'                    => Language::LANGCODE_NOT_SPECIFIED,
    'title'                       => '...',
];
$entity = \Drupal::entityTypeManager()->getStorage('node')->create($values);
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.