EntityBrowserWidgetValidation.php in Entity Browser 8.2
Same filename and directory in other branches
Namespace
Drupal\entity_browser\AnnotationFile
src/Annotation/EntityBrowserWidgetValidation.phpView source
<?php
namespace Drupal\entity_browser\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
 * Defines an entity browser widget validation annotation object.
 *
 * @see hook_entity_browser_widget_validation_info_alter()
 *
 * @Annotation
 */
class EntityBrowserWidgetValidation extends Plugin {
  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;
  /**
   * The human-readable name of the widget validator.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;
  /**
   * The data type plugin ID, for which a constraint should be added (Optional).
   *
   * @var string
   */
  public $data_type;
  /**
   * The constraint ID (Optional).
   *
   * @var string
   */
  public $constraint;
}Classes
| Name   | Description | 
|---|---|
| EntityBrowserWidgetValidation | Defines an entity browser widget validation annotation object. | 
