GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Field/Annotation/ |
Upload File : |
<?php namespace Drupal\Core\Field\Annotation; use Drupal\Component\Annotation\Plugin; /** * 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(). * * @Annotation * * @see \Drupal\Core\Field\WidgetPluginManager * @see \Drupal\Core\Field\WidgetInterface * * @ingroup field_widget */ 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 = []; /** * 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; }