You are here

public function AutosaveEntityFormStorageInterface::getEntity in Autosave Form 8

Retrieves the stored entity.

Parameters

$form_id: The form id.

string $entity_type_id: The entity type id of the entity.

mixed $entity_id: The id of the entity.

string $langcode: The language code of the original entity.

$uid: The user id.

$form_session_id: (optional) The form session id.

$timestamp: (optional) The timestamp for which to load the entity.

Return value

\Drupal\Core\Entity\EntityInterface The entity.

1 method overrides AutosaveEntityFormStorageInterface::getEntity()
AutosaveEntityFormDatabaseStorage::getEntity in src/Storage/AutosaveEntityFormDatabaseStorage.php
Retrieves the stored entity.

File

src/Storage/AutosaveEntityFormStorageInterface.php, line 89

Class

AutosaveEntityFormStorageInterface
Interface for providing autosave storage for entity forms.

Namespace

Drupal\autosave_form\Storage

Code

public function getEntity($form_id, $entity_type_id, $entity_id, $langcode, $uid, $form_session_id = NULL, $timestamp = NULL);