interface AutosaveFormBackendInterface in Autosave Form 8
Interface for providing autosave form storage.
Hierarchy
- interface \Drupal\autosave_form\Storage\AutosaveFormBackendInterface
Expanded class hierarchy of AutosaveFormBackendInterface
All classes that implement AutosaveFormBackendInterface
File
- src/
Storage/ AutosaveFormBackendInterface.php, line 12
Namespace
Drupal\autosave_form\StorageView source
interface AutosaveFormBackendInterface {
/**
* Stores the form state.
*
* @param $form_id
* The form id.
* @param string $langcode
* The language code of the form.
* @param $uid
* The user id.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The form state.
*/
public function storeFormState($form_id, $langcode, $uid, FormStateInterface $form_state);
/**
* Retrieves the stored form state.
*
* @param $form_id
* The form id.
* @param string $langcode
* The language code of the form.
* @param $uid
* The user id.
*
* @return FormStateInterface
* The form state object.
*/
public function getFormState($form_id, $langcode, $uid);
/**
* Checks if there is any autosaved form state.
*
* @param $form_id
* The form id.
* @param string $langcode
* The language code of the form.
* @param $uid
* The user id.
*
* @return bool
* TRUE, if any autosaved form states have been found, FALSE otherwise.
*/
public function hasAutosavedFormState($form_id, $langcode, $uid);
/**
* Retrieves the timestamp of the last autosaved state.
*
* @param $form_id
* The form id.
* @param string $langcode
* The language code of the original entity.
* @param $uid
* The user id.
*
* @return int
* The timestamp of the last autosaved state, or NULL if none has been found.
*/
public function getLastAutosavedStateTimestamp($form_id, $langcode, $uid);
/**
* Purges all autosaved states for the given form id.
*
* @param $form_id
* The form id.
* @param string $langcode
* (optional) The language code of the form.
* @param $uid
* (optional) The user id.
*/
public function purgeAutosavedFormStates($form_id, $langcode = NULL, $uid = NULL);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AutosaveFormBackendInterface:: |
public | function | Retrieves the stored form state. | |
AutosaveFormBackendInterface:: |
public | function | Retrieves the timestamp of the last autosaved state. | |
AutosaveFormBackendInterface:: |
public | function | Checks if there is any autosaved form state. | |
AutosaveFormBackendInterface:: |
public | function | Purges all autosaved states for the given form id. | |
AutosaveFormBackendInterface:: |
public | function | Stores the form state. |