You are here

FapiValidationValidator.php in Form API Validation 8.2

File

src/Annotation/FapiValidationValidator.php
View source
<?php

namespace Drupal\fapi_validation\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * A FAPI Validation Validator annotation.
 *
 * @Annotation
 */
class FapiValidationValidator extends Plugin {

  /**
   * The error message.
   *
   * @var string
   */
  protected $error_message;

  /**
   * The callback for error messages.
   *
   * @var string
   */
  protected $error_callback;

}

Classes

Namesort descending Description
FapiValidationValidator A FAPI Validation Validator annotation.