class FieldWidget in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Field/Annotation/FieldWidget.php \Drupal\Core\Field\Annotation\FieldWidget
Defines a FieldWidget annotation object.
Widgets handle how fields are displayed in edit forms.
Additional annotation keys for widgets can be defined in hook_field_widget_info_alter().
Hierarchy
- class \Drupal\Component\Annotation\Plugin implements AnnotationInterface
- class \Drupal\Core\Field\Annotation\FieldWidget
Expanded class hierarchy of FieldWidget
See also
\Drupal\Core\Field\WidgetPluginManager
\Drupal\Core\Field\WidgetInterface
Related topics
26 classes are annotated with FieldWidget
- BooleanCheckboxWidget in core/
lib/ Drupal/ Core/ Field/ Plugin/ Field/ FieldWidget/ BooleanCheckboxWidget.php - Plugin implementation of the 'boolean_checkbox' widget.
- CommentWidget in core/
modules/ comment/ src/ Plugin/ Field/ FieldWidget/ CommentWidget.php - Provides a default comment widget.
- DateTimeDatelistWidget in core/
modules/ datetime/ src/ Plugin/ Field/ FieldWidget/ DateTimeDatelistWidget.php - Plugin implementation of the 'datetime_datelist' widget.
- DateTimeDefaultWidget in core/
modules/ datetime/ src/ Plugin/ Field/ FieldWidget/ DateTimeDefaultWidget.php - Plugin implementation of the 'datetime_default' widget.
- EmailDefaultWidget in core/
lib/ Drupal/ Core/ Field/ Plugin/ Field/ FieldWidget/ EmailDefaultWidget.php - Plugin implementation of the 'email_default' widget.
File
- core/
lib/ Drupal/ Core/ Field/ Annotation/ FieldWidget.php, line 27 - Contains \Drupal\Core\Field\Annotation\FieldWidget.
Namespace
Drupal\Core\Field\AnnotationView source
class FieldWidget extends Plugin {
/**
* The plugin ID.
*
* @var string
*/
public $id;
/**
* The human-readable name of the widget type.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
/**
* A short description of the widget type.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $description;
/**
* The name of the widget class.
*
* This is not provided manually, it will be added by the discovery mechanism.
*
* @var string
*/
public $class;
/**
* An array of field types the widget supports.
*
* @var array
*/
public $field_types = array();
/**
* Does the field widget handles multiple values at once.
*
* @var bool
*/
public $multiple_values = FALSE;
/**
* An integer to determine the weight of this widget relative to other widgets
* in the Field UI when selecting a widget for a given field.
*
* @var int optional
*/
public $weight = NULL;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FieldWidget:: |
public | property | The name of the widget class. | |
FieldWidget:: |
public | property | A short description of the widget type. | |
FieldWidget:: |
public | property | An array of field types the widget supports. | |
FieldWidget:: |
public | property | The plugin ID. | |
FieldWidget:: |
public | property | The human-readable name of the widget type. | |
FieldWidget:: |
public | property | Does the field widget handles multiple values at once. | |
FieldWidget:: |
public | property | An integer to determine the weight of this widget relative to other widgets in the Field UI when selecting a widget for a given field. | |
Plugin:: |
protected | property | The plugin definition read from the class annotation. | 1 |
Plugin:: |
public | function |
Gets the value of an annotation. Overrides AnnotationInterface:: |
2 |
Plugin:: |
public | function |
Gets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the unique ID for this annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Gets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
protected | function | Parses an annotation into its definition. | |
Plugin:: |
public | function |
Sets the class of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function |
Sets the name of the provider of the annotated class. Overrides AnnotationInterface:: |
|
Plugin:: |
public | function | Constructs a Plugin object. | 1 |