interface AutosaveFormInterface in Autosave Form 8
Interface for providing autosave for forms.
Hierarchy
- interface \Drupal\autosave_form\Form\AutosaveFormInterface
Expanded class hierarchy of AutosaveFormInterface
All classes that implement AutosaveFormInterface
1 file declares its use of AutosaveFormInterface
- autosave_form_test.module in tests/
modules/ autosave_form_test/ autosave_form_test.module
File
- src/
Form/ AutosaveFormInterface.php, line 11
Namespace
Drupal\autosave_form\FormView source
interface AutosaveFormInterface {
const AUTOSAVE_ELEMENT_NAME = 'autosave_form_save';
const AUTOSAVE_RESTORE_ELEMENT_NAME = 'autosave_form_restore';
const AUTOSAVE_REJECT_ELEMENT_NAME = 'autosave_form_reject';
/**
* Performs the needed alterations to the form.
*
* @param array $form
* The form to be altered to provide autosave.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*/
public function formAlter(array &$form, FormStateInterface $form_state);
/**
* Checks if the autosave submit is allowed.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*
* @return boolean
* TRUE if the autosave submission should be executed, FALSE otherwise.
*/
public function isAutosaveSubmitValid(FormStateInterface $form_state);
/**
* Stores the state of the form in the autosave storage.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
* @param string $autosave_form_session_id
* The autosave form session ID.
* @param int $autosave_timestamp
* The timestamp to use for the autosave record.
* @param string|int $uid
* The user id.
*/
public function storeState(FormStateInterface $form_state, $autosave_form_session_id, $autosave_timestamp, $uid);
/**
* Retrieves the last autosaved timestamp.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
* @param string|int $uid
* The user id.
*
* @return int
* The last autosaved timestamp.
*/
public function getLastAutosavedTimestamp(FormStateInterface $form_state, $uid);
/**
* Retrieves the last autosaved form state if any present.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form, based on which to retrieve the last
* autosaved form state.
* @param string $autosave_form_session_id
* The autosave form session ID for which to retrieve the form state.
* @param string|int $uid
* The user id.
*
* @return \Drupal\Core\Form\FormStateInterface|NULL
* The last autosaved form state or NULL if none present.
*/
public function getLastAutosavedFormState(FormStateInterface $form_state, $autosave_form_session_id, $uid);
/**
* Purges the current autosave state session for the form state and user.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
* @param string|int $uid
* The user id for which to purge the autosaved states.
*/
public function purgeCurrentAutosavedState(FormStateInterface $form_state, $uid);
/**
* Purges all autosaved state sessions for the current form and user.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
* @param string|int $uid
* The user id for which to purge the autosaved states.
*/
public function purgeAllAutosavedStates(FormStateInterface $form_state, $uid);
/**
* Determines if autosave is enabled for the current form.
*
* @param \Drupal\Core\Form\FormStateInterface $form_state
* The current state of the form.
*
* @return bool
* TRUE if autosave is enabled, FALSE otherwise.
*/
public function isAutosaveEnabled(FormStateInterface $form_state);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AutosaveFormInterface:: |
constant | |||
AutosaveFormInterface:: |
constant | |||
AutosaveFormInterface:: |
constant | |||
AutosaveFormInterface:: |
public | function | Performs the needed alterations to the form. | 1 |
AutosaveFormInterface:: |
public | function | Retrieves the last autosaved form state if any present. | 1 |
AutosaveFormInterface:: |
public | function | Retrieves the last autosaved timestamp. | 1 |
AutosaveFormInterface:: |
public | function | Determines if autosave is enabled for the current form. | 1 |
AutosaveFormInterface:: |
public | function | Checks if the autosave submit is allowed. | 1 |
AutosaveFormInterface:: |
public | function | Purges all autosaved state sessions for the current form and user. | 1 |
AutosaveFormInterface:: |
public | function | Purges the current autosave state session for the form state and user. | 1 |
AutosaveFormInterface:: |
public | function | Stores the state of the form in the autosave storage. | 1 |