AJAX command for passing a rendered field form to Edit's JavaScript app.
Expanded class hierarchy of FieldFormCommand
class FieldFormCommand extends BaseCommand {
/**
* Constructs a FieldFormCommand object.
*
* @param string $data
* The data to pass on to the client side.
*/
public function __construct($data) {
parent::__construct('editFieldForm', $data);
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BaseCommand:: |
protected | property | The name of the command. | |
BaseCommand:: |
protected | property | The data to pass on to the client side. | |
BaseCommand:: |
public | function |
Implements Drupal\Core\Ajax\CommandInterface:render(). Overrides CommandInterface:: |
|
FieldFormCommand:: |
public | function |
Constructs a FieldFormCommand object. Overrides BaseCommand:: |