class EntitySavedCommand in Drupal 10
Same name and namespace in other branches
- 8 core/modules/quickedit/src/Ajax/EntitySavedCommand.php \Drupal\quickedit\Ajax\EntitySavedCommand
- 9 core/modules/quickedit/src/Ajax/EntitySavedCommand.php \Drupal\quickedit\Ajax\EntitySavedCommand
AJAX command to indicate the entity was loaded from PrivateTempStore and saved into the database.
Hierarchy
- class \Drupal\quickedit\Ajax\EntitySavedCommand extends \Drupal\Core\Ajax\BaseCommand
Expanded class hierarchy of EntitySavedCommand
1 file declares its use of EntitySavedCommand
- QuickEditController.php in core/
modules/ quickedit/ src/ QuickEditController.php
File
- core/
modules/ quickedit/ src/ Ajax/ EntitySavedCommand.php, line 11
Namespace
Drupal\quickedit\AjaxView source
class EntitySavedCommand extends BaseCommand {
/**
* Constructs an EntitySaveCommand object.
*
* @param string $data
* The data to pass on to the client side.
*/
public function __construct($data) {
parent::__construct('quickeditEntitySaved', $data);
}
}