php 渲染阵列模板#drupal8
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 渲染阵列模板#drupal8相关的知识,希望对你有一定的参考价值。
// Test Field
$render['myTextField'] = [
'#type' => 'textfield',
'#title' => t('My title'),
];
// Number Field
$render['myNumberField'] = [
'#type' => 'number',
'#min' => '0',
'#max' => '100',
'#step' => '1',
'#size' => '9',
'#title' => t('My title'),
];
// Link with button aspect
$render['myButton'] = [
'#type' => 'link',
'#title' => t('MyTitle'),
'#url' => \Drupal\Core\Url::fromUserInput('/myPath'),
];
$render['myButton']['#attributes']['class'][] = 'ui green button';
// Select
$render['mySelect'] = array(
'#type' => 'select',
'#title' => $this->t("myTitle"),
'#options' => [
'1' => $this->t("option1"),
'2' => $this->t("option2"),
'3' => $this->t("option3"),
],
);
以上是关于php 渲染阵列模板#drupal8的主要内容,如果未能解决你的问题,请参考以下文章
php drupal8_add_role.php
php 将css classname添加到Render数组元素#drupal8
php 没有加载模板。没有模板渲染
php 没有加载模板。没有模板渲染
php 渲染到模板
php 将html渲染为模板