comparison core/modules/quickedit/src/Ajax/FieldFormCommand.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
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 }