Version 1
[yaffs-website] / web / core / modules / quickedit / src / Ajax / FieldFormCommand.php
1 <?php
2
3 namespace Drupal\quickedit\Ajax;
4
5 use Drupal\Core\Ajax\BaseCommand;
6
7 /**
8  * AJAX command for passing a rendered field form to Quick Edit's JavaScript
9  * app.
10  */
11 class FieldFormCommand extends BaseCommand {
12
13   /**
14    * Constructs a FieldFormCommand 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('quickeditFieldForm', $data);
21   }
22
23 }