php 将实体字段添加到垂直选项卡
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将实体字段添加到垂直选项卡相关的知识,希望对你有一定的参考价值。
<?php
/**
* Implements hook_form_FORM_ID_alter().
*
* Move your field or group of fields to the node form options vertical tabs.
*/
function hook_form_node_form_alter(&$form, FormState $form_state, $form_id) {
if (strstr($form_id, 'node_article')) {
$form['mygroup'] = [
'#type' => 'details',
'#title' => t('My custom settings'),
'#group' => 'advanced',
'#open' => 'always',
'#attributes' => [
'class' => ['node-form-options']
],
'#attached' => [
'library' => ['node/drupal.node'],
],
'#weight' => 100,
'#optional' => TRUE
];
$form['field_any']['#group'] = 'mygroup';
}
}
以上是关于php 将实体字段添加到垂直选项卡的主要内容,如果未能解决你的问题,请参考以下文章