forked from craue/CraueFormFlowBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataManagerInterface.php
More file actions
51 lines (41 loc) · 1.01 KB
/
DataManagerInterface.php
File metadata and controls
51 lines (41 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
namespace Craue\FormFlowBundle\Storage;
use Craue\FormFlowBundle\Form\FormFlowInterface;
/**
* @author Christian Raue <[email protected]>
* @copyright 2011-2025 Christian Raue
* @license http://opensource.org/licenses/mit-license.php MIT License
*/
interface DataManagerInterface {
/**
* @var string Key for storing data of all flows.
*/
const STORAGE_ROOT = 'craue_form_flow';
/**
* @return StorageInterface
*/
function getStorage();
/**
* Saves data of the given flow.
* @param FormFlowInterface $flow
* @param array $data
*/
function save(FormFlowInterface $flow, array $data);
/**
* Checks if data exists for a given flow.
* @param FormFlowInterface $flow
* @return bool
*/
function exists(FormFlowInterface $flow);
/**
* Loads data of the given flow.
* @param FormFlowInterface $flow
* @return array
*/
function load(FormFlowInterface $flow);
/**
* Drops data of the given flow.
* @param FormFlowInterface $flow
*/
function drop(FormFlowInterface $flow);
}