form_inspector-8.x-1.x-dev/src/FormInspectorManagerInterface.php
src/FormInspectorManagerInterface.php
<?php
namespace Drupal\form_inspector;
use Drupal\Core\Form\FormStateInterface;
/**
* Form Inspector Manager Interface.
*/
interface FormInspectorManagerInterface {
/**
* Adds ancestors and contextual links to field widgets.
*
* @param array $element
* The field widget form element as constructed by
* \Drupal\Core\Field\WidgetBaseInterface::form().
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
* @param array $context
* An associative array containing the following key-value pairs:
* - form: The form structure to which widgets are being attached. This may
* be
* a full form structure, or a sub-element of a larger form.
* - widget: The widget plugin instance.
* - items: The field values, as a
* \Drupal\Core\Field\FieldItemListInterface object.
* - delta: The order of this item in the array of subelements (0, 1, 2,
* etc).
* - default: A boolean indicating whether the form is being shown as a
* dummy form to set default values.
* @param bool $add_ancestors
* If it should add ancestors.
* @param bool $add_wrapper
* If it should add a paragraph contextual region wrapper.
*/
public function fieldWidgetFormAlter(array &$element, FormStateInterface &$form_state, array $context, $add_ancestors = TRUE, $add_wrapper = TRUE);
}
