gpt4 book ai didi

content-type - 如何在Drupal 8中以编程方式获取内容类型名称

转载 作者:行者123 更新时间:2023-12-04 10:36:39 25 4
gpt4 key购买 nike

我正在研究Drupal8。我想获取内容类型的机器名称和标签。这是我的代码:

$cont_type = node_type_get_types();
foreach ($cont_type as $key => $value) {
$label = $value->name;
$machine_name = $key;
}

在这里,我收到一条错误消息: Cannot access protected property Drupal\node\Entity\NodeType::$name

最佳答案

为了获得当前的内容类型:

$node = \Drupal::routeMatch()->getParameter('node');
$typeName = $node->bundle();
$typeLabel = $node->getTitle();

还有另一种方法。
$node = \Drupal::request()->attributes->get('node')

关于content-type - 如何在Drupal 8中以编程方式获取内容类型名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31116325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com