本文整理汇总了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;
}
示例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 [];
}
示例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);
}