Drupal 8のノードオブジェクトからノードのバンドルラベル(ノードタイプラベル)を取得しようとしています。
これは機能しますが、時間がかかるようです:
$node_type = \Drupal::entityManager()->getStorage('node_type')->load($node->getType())->get('name');
より簡単な方法でバンドルラベルを取得する別の方法はありますか?
小枝テンプレートでも機能します:{{node.type.entity.label}}
—
oknate '17年
$node->type->entity->label();
多分もう少し優雅ですか?現在、より短いバージョンがあるかどうかはわかりません