-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathDataManagerInterface.php
More file actions
63 lines (51 loc) · 1.24 KB
/
Copy pathDataManagerInterface.php
File metadata and controls
63 lines (51 loc) · 1.24 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
52
53
54
55
56
57
58
59
60
61
62
63
<?php
namespace Craue\FormFlowBundle\Storage;
use Craue\FormFlowBundle\Form\FormFlowInterface;
/**
* @author Christian Raue <christian.raue@gmail.com>
* @copyright 2011-2020 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();
/**
* @return GaufretteStorage
*/
function getGaufretteStorage();
/**
* 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);
/**
* Cleanups Gaufrette temp data of the given flow.
* @param FormFlowInterface $flow
* @return bool
*/
function cleanup(FormFlowInterface $flow);
/**
* Drops data of the given flow.
* @param FormFlowInterface $flow
*/
function drop(FormFlowInterface $flow);
}