1 | <?php |
||
19 | class Step extends AbstractFormzConfiguration |
||
20 | { |
||
21 | use StoreArrayIndexTrait; |
||
22 | |||
23 | /** |
||
24 | * @var int |
||
25 | */ |
||
26 | protected $pageUid; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | protected $extension; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | protected $controller; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | * @validate NotEmpty |
||
41 | */ |
||
42 | protected $action; |
||
43 | |||
44 | /** |
||
45 | * Name of the field. By default, it is the key of this step in the array |
||
46 | * containing all the steps for the parent form. |
||
47 | * |
||
48 | * @var string |
||
49 | */ |
||
50 | private $name; |
||
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getName() |
||
63 | |||
64 | /** |
||
65 | * @param string $name |
||
66 | */ |
||
67 | public function setName($name) |
||
71 | |||
72 | /** |
||
73 | * @return string |
||
74 | */ |
||
75 | public function getExtension() |
||
79 | |||
80 | /** |
||
81 | * @return string |
||
82 | */ |
||
83 | public function getController() |
||
87 | |||
88 | /** |
||
89 | * @return string |
||
90 | */ |
||
91 | public function getAction() |
||
95 | } |
||
96 |