CRM_Core_BAO_Setting - Don't prefill settings
[civicrm-core.git] / CRM / Core / State.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 * The basic state element. Each state element is linked to a form and
30 * represents the form in the transition diagram. We use the state to
31 * determine what action to take on various user input. Actions include
32 * things like going back / stepping forward / process etc
33 *
34 * @package CRM
e7112fa7 35 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
36 */
37class CRM_Core_State {
38
39 /**
f9e31d7f 40 * State name.
6a488035
TO
41 * @var string
42 */
43 protected $_name;
44
45 /**
100fef9d 46 * This is a combination "OR" of the STATE_* constants defined below
6a488035
TO
47 * @var int
48 */
49 protected $_type;
50
51 /**
f9e31d7f 52 * The state that precedes this state.
c490a46a 53 * @var CRM_Core_State
6a488035
TO
54 */
55 protected $_back;
56
57 /**
f9e31d7f 58 * The state that succeeds this state.
c490a46a 59 * @var CRM_Core_State
6a488035
TO
60 */
61 protected $_next;
62
63 /**
f9e31d7f 64 * The state machine that this state is part of.
c490a46a 65 * @var CRM_Core_StateMachine
6a488035
TO
66 */
67 protected $_stateMachine;
68
69 /**
70 * The different types of states. As we flush out the framework more
71 * we will introduce other conditional / looping states which will
72 * bring in more complexity to the framework. For now, lets keep it simple
73 * @var int
74 */
7da04cde 75 const START = 1, FINISH = 2, SIMPLE = 4;
6a488035
TO
76
77 /**
f9e31d7f 78 * Constructor.
6a488035 79 *
6a0b768e
TO
80 * @param string $name
81 * Internal name of the state.
82 * @param int $type
83 * State type.
84 * @param CRM_Core_State $back
85 * State that precedes this state.
86 * @param CRM_Core_State $next
87 * State that follows this state.
88 * @param CRM_Core_StateMachine $stateMachine
89 * Statemachine that this states belongs to.
6a488035 90 *
c490a46a 91 * @return CRM_Core_State
6a488035 92 */
00be9182 93 public function __construct($name, $type, $back, $next, &$stateMachine) {
6a488035
TO
94 $this->_name = $name;
95 $this->_type = $type;
96 $this->_back = $back;
97 $this->_next = $next;
98
99 $this->_stateMachine = &$stateMachine;
100 }
101
00be9182 102 public function debugPrint() {
6a488035
TO
103 CRM_Core_Error::debug("{$this->_name}, {$this->_type}", "{$this->_back}, {$this->_next}");
104 }
105
106 /**
107 * Given an CRM Form, jump to the previous page
108 *
72b3a70c
CW
109 * @return mixed
110 * does a jump to the back state
6a488035 111 */
00be9182 112 public function handleBackState(&$page) {
6a488035
TO
113 if ($this->_type & self::START) {
114 $page->handle('display');
115 }
116 else {
117 $back = &$page->controller->getPage($this->_back);
118 return $back->handle('jump');
119 }
120 }
121
122 /**
123 * Given an CRM Form, jump to the next page
124 *
72b3a70c
CW
125 * @return mixed
126 * does a jump to the nextstate
6a488035 127 */
00be9182 128 public function handleNextState(&$page) {
6a488035
TO
129 if ($this->_type & self::FINISH) {
130 $page->handle('process');
131 }
132 else {
133 $next = &$page->controller->getPage($this->_next);
134 return $next->handle('jump');
135 }
136 }
137
138 /**
139 * Determine the name of the next state. This is useful when we want
140 * to display the navigation labels or potential path
141 *
142 * @return string
6a488035 143 */
00be9182 144 public function getNextState() {
6a488035
TO
145 if ($this->_type & self::FINISH) {
146 return NULL;
147 }
148 else {
149 $next = &$page->controller->getPage($this->_next);
150 return $next;
151 }
152 }
153
154 /**
8eedd10a 155 * Mark this page as valid for the QFC framework.
6a488035 156 */
00be9182 157 public function validate(&$data) {
6a488035
TO
158 $data['valid'][$this->_name] = TRUE;
159 }
160
161 /**
8eedd10a 162 * Mark this page as invalid for the QFC framework.
6a488035 163 */
00be9182 164 public function invalidate(&$data) {
6a488035
TO
165 $data['valid'][$this->_name] = NULL;
166 }
167
168 /**
f9e31d7f 169 * Getter for name.
6a488035
TO
170 *
171 * @return string
6a488035 172 */
00be9182 173 public function getName() {
6a488035
TO
174 return $this->_name;
175 }
176
177 /**
f9e31d7f 178 * Setter for name.
6a488035 179 */
00be9182 180 public function setName($name) {
6a488035
TO
181 $this->_name = $name;
182 }
183
184 /**
f9e31d7f 185 * Getter for type.
6a488035
TO
186 *
187 * @return int
6a488035 188 */
00be9182 189 public function getType() {
6a488035
TO
190 return $this->_type;
191 }
96025800 192
6a488035 193}