Version 1
[yaffs-website] / web / core / modules / quickedit / src / Ajax / FieldFormValidationErrorsCommand.php
1 <?php
2
3 namespace Drupal\quickedit\Ajax;
4
5 use Drupal\Core\Ajax\BaseCommand;
6
7 /**
8  * AJAX command to indicate a field form was attempted to be saved but failed
9  * validation and pass the validation errors.
10  */
11 class FieldFormValidationErrorsCommand extends BaseCommand {
12
13   /**
14    * Constructs a FieldFormValidationErrorsCommand object.
15    *
16    * @param string $data
17    *   The data to pass on to the client side.
18    */
19   public function __construct($data) {
20     parent::__construct('quickeditFieldFormValidationErrors', $data);
21   }
22
23 }