AbstractGeneratorGroupConfiguration.php
1.05 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
<?php
namespace Nextend\SmartSlider3\Generator;
use Nextend\Framework\Pattern\MVCHelperTrait;
abstract class AbstractGeneratorGroupConfiguration {
/** @var AbstractGeneratorGroup */
protected $generatorGroup;
/**
* AbstractGeneratorGroupConfiguration constructor.
*
* @param AbstractGeneratorGroup $generatorGroup
*/
public function __construct($generatorGroup) {
$this->generatorGroup = $generatorGroup;
}
/**
* @return bool
*/
public abstract function wellConfigured();
/**
* @return array
*/
public abstract function getData();
/**
* @param $data
* @param bool $store
*/
public abstract function addData($data, $store = true);
/**
* @param MVCHelperTrait $MVCHelper
*/
public abstract function render($MVCHelper);
/**
* @param MVCHelperTrait $MVCHelper
*/
public abstract function startAuth($MVCHelper);
/**
* @param MVCHelperTrait $MVCHelper
*/
public abstract function finishAuth($MVCHelper);
}