当前位置: 首页>>代码示例>>PHP>>正文


PHP WidgetBase::form方法代码示例

本文整理汇总了PHP中Drupal\Core\Field\WidgetBase::form方法的典型用法代码示例。如果您正苦于以下问题:PHP WidgetBase::form方法的具体用法?PHP WidgetBase::form怎么用?PHP WidgetBase::form使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Drupal\Core\Field\WidgetBase的用法示例。


在下文中一共展示了WidgetBase::form方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: form

 /**
  * {@inheritdoc}
  */
 public function form(FieldItemListInterface $items, array &$form, FormStateInterface $form_state, $get_delta = NULL)
 {
     $ret = parent::form($items, $form, $form_state, $get_delta);
     $field_name = $this->fieldDefinition->getName();
     // Add a new wrapper around all the elements for Ajax replacement.
     $ret['#prefix'] = '<div id="' . $field_name . '-ajax-wrapper">';
     $ret['#suffix'] = '</div>';
     return $ret;
 }
开发者ID:atif-shaikh,项目名称:DCX-Profile,代码行数:12,代码来源:FieldCollectionEmbedWidget.php

示例2: form

 /**
  * {@inheritdoc}
  */
 public function form(FieldItemListInterface $items, array &$form, FormStateInterface $form_state, $get_delta = NULL)
 {
     if ($this->canBuildForm($form_state)) {
         return parent::form($items, $form, $form_state, $get_delta);
     }
     return [];
 }
开发者ID:CIGIHub,项目名称:bsia-drupal8,代码行数:10,代码来源:InlineEntityFormBase.php

示例3: form

 /**
  * {@inheritdoc}
  */
 public function form(FieldItemListInterface $items, array &$form, FormStateInterface $form_state, $get_delta = NULL)
 {
     $parents = $form['#parents'];
     // Identify the manage field settings default value form.
     if (in_array('default_value_input', $parents, TRUE)) {
         // Since the entity is not reusable neither cloneable, having a default
         // value is not supported.
         return ['#markup' => $this->t('No widget available for: %label.', ['%label' => $items->getFieldDefinition()->getLabel()])];
     }
     return parent::form($items, $form, $form_state, $get_delta);
 }
开发者ID:eric-shell,项目名称:eric-shell-d8,代码行数:14,代码来源:InlineParagraphsWidget.php


注:本文中的Drupal\Core\Field\WidgetBase::form方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。