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 将实体字段添加到垂直选项卡的主要内容,如果未能解决你的问题,请参考以下文章

日期字段添加到新选项卡时未显示Datepicker

核心数据多实体

SQL Server Management Studio中的垂直选项卡 - 并排查询和结果?

如何使布局填充qt选项卡小部件内的所有内容?

json数据怎么抽取实体

当网格达到一定高度时,如何将垂直滚动条添加到 ext 网格面板?