web-dev-qa-db-ja.com

ノードデータをロードするための依存性注入

phpcs --standard=DrupalPractice /path/to/myControllerで記述したコードを確認すると、次の警告が表示されました。

警告| Node :: load呼び出しはクラスでは避けてください。代わりに依存性注入を使用してください。

ノードのロードに使用するコードは次のとおりです。

use Drupal\node\Entity\Node;

public function content_load($node = NULL) {
 $noad_data = Node::load($node, NULL, TRUE);
}

依存性注入を使用してノードをロードするにはどうすればよいですか?

6
Crazyrubixfan

コントローラの基本クラスは、最初に使用するときにコンテナから同じ名前のサービスを取得するメソッドentityTypeManager()を提供します。このサービスを使用して、ノードストレージを取得できます。

  $node_storage = $this->entityTypeManager()->getStorage('node');

次にノードをロードします。

  $node = $node_storage->load($nid);
15
4k4

私は100%確実ではありませんが、これは私がそれをブロックに対して機能させた方法です(ノードはコンテキストから来ていませんでした):

<?php

namespace Drupal\MYMODULE\Plugin\Block;

use Drupal\Core\Block\BlockBase;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;

/**
 * Provides a 'My Block' Block.
 *
 * @Block(
 *   id = "my_block",
 *   admin_label = @Translation("My Block"),
 * )
 */
class MyBlock extends BlockBase implements ContainerFactoryPluginInterface {

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * Constructs a new MyBlock.
   *
   * @param array $configuration
   *   A configuration array containing information about the plugin instance.
   * @param string $plugin_id
   *   The plugin_id for the plugin instance.
   * @param array $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager service.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->entityTypeManager = $entity_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static(
      $configuration,
      $plugin_id,
      $plugin_definition,
      $container->get('entity_type.manager')
    );
  }

  /**
   * {@inheritdoc}
   */
  public function build() {

    $node_storage = $this->entityTypeManager->getStorage('node');

    $node = $node_storage->load(1);

    return [
      '#markup' => $node->getTitle(),
    ];
  }

}
10
leymannx