copyright and version fixes
[civicrm-core.git] / CRM / Core / Page / Basic.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36
37
38
39 abstract class CRM_Core_Page_Basic extends CRM_Core_Page {
40
41 protected $_action;
42
43 /**
44 * define all the abstract functions here
45 */
46
47 /**
48 * name of the BAO to perform various DB manipulations
49 *
50 * @return string
51 * @access public
52 */
53
54 abstract function getBAOName();
55
56 /**
57 * an array of action links
58 *
59 * @return array (reference)
60 * @access public
61 */
62 abstract function &links();
63
64 /**
65 * name of the edit form class
66 *
67 * @return string
68 * @access public
69 */
70 abstract function editForm();
71
72 /**
73 * name of the form
74 *
75 * @return string
76 * @access public
77 */
78 abstract function editName();
79
80 /**
81 * userContext to pop back to
82 *
83 * @param int $mode mode that we are in
84 *
85 * @return string
86 * @access public
87 */
88 abstract function userContext($mode = NULL);
89
90 /**
91 * function to get userContext params
92 *
93 * @param int $mode mode that we are in
94 *
95 * @return string
96 * @access public
97 */
98 function userContextParams($mode = NULL) {
99 return 'reset=1&action=browse';
100 }
101
102 /**
103 * allow objects to be added based on permission
104 *
105 * @param int $id the id of the object
106 * @param int $name the name or title of the object
107 *
108 * @return string permission value if permission is granted, else null
109 * @access public
110 */
111 public function checkPermission($id, $name) {
112 return CRM_Core_Permission::EDIT;
113 }
114
115 /**
116 * allows the derived class to add some more state variables to
117 * the controller. By default does nothing, and hence is abstract
118 *
119 * @param CRM_Core_Controller $controller the controller object
120 *
121 * @return void
122 * @access public
123 */
124 function addValues($controller) {}
125
126 /**
127 * class constructor
128 *
129 * @param string $title title of the page
130 * @param int $mode mode of the page
131 *
132 * @return CRM_Core_Page
133 */
134 function __construct($title = NULL, $mode = NULL) {
135 parent::__construct($title, $mode);
136 }
137
138 /**
139 * Run the basic page (run essentially starts execution for that page).
140 *
141 * @return void
142 */
143 function run() {
144 // CRM-9034
145 // dont see args or pageArgs being used, so we should
146 // consider eliminating them in a future version
147 $n = func_num_args();
148 $args = ($n > 0) ? func_get_arg(0) : NULL;
149 $pageArgs = ($n > 1) ? func_get_arg(1) : NULL;
150 $sort = ($n > 2) ? func_get_arg(2) : NULL;
151 // what action do we want to perform ? (store it for smarty too.. :)
152
153 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE, 'browse');
154 $this->assign('action', $this->_action);
155
156 // get 'id' if present
157 $id = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE, 0);
158
159 require_once (str_replace('_', DIRECTORY_SEPARATOR, $this->getBAOName()) . ".php");
160
161 if ($id) {
162 if (!$this->checkPermission($id, NULL)) {
163 CRM_Core_Error::fatal(ts('You do not have permission to make changes to the record'));
164 }
165 }
166
167 if ($this->_action &
168 (CRM_Core_Action::VIEW |
169 CRM_Core_Action::ADD |
170 CRM_Core_Action::UPDATE |
171 CRM_Core_Action::COPY |
172 CRM_Core_Action::ENABLE |
173 CRM_Core_Action::DISABLE |
174 CRM_Core_Action::DELETE
175 )
176 ) {
177 // use edit form for view, add or update or delete
178 $this->edit($this->_action, $id);
179 }
180 else {
181 // if no action or browse
182 $this->browse(NULL, $sort);
183 }
184
185 return parent::run();
186 }
187
188 function superRun() {
189 return parent::run();
190 }
191
192 /**
193 * browse all entities.
194 *
195 * @param int $action
196 *
197 * @return void
198 * @access public
199 */
200 function browse() {
201 $n = func_num_args();
202 $action = ($n > 0) ? func_get_arg(0) : NULL;
203 $sort = ($n > 0) ? func_get_arg(1) : NULL;
204 $links = &$this->links();
205 if ($action == NULL) {
206 if (!empty($links)) {
207 $action = array_sum(array_keys($links));
208 }
209 }
210 if ($action & CRM_Core_Action::DISABLE) {
211 $action -= CRM_Core_Action::DISABLE;
212 }
213 if ($action & CRM_Core_Action::ENABLE) {
214 $action -= CRM_Core_Action::ENABLE;
215 }
216 $baoString = $this->getBAOName();
217 $object = new $baoString();
218
219 $values = array();
220
221 /*
222 * lets make sure we get the stuff sorted by name if it exists
223 */
224
225 $fields = &$object->fields();
226 $key = '';
227 if (!empty($fields['title'])) {
228 $key = 'title';
229 }
230 elseif (!empty($fields['label'])) {
231 $key = 'label';
232 }
233 elseif (!empty($fields['name'])) {
234 $key = 'name';
235 }
236
237 if (trim($sort)) {
238 $object->orderBy($sort);
239 }
240 elseif ($key) {
241 $object->orderBy($key . ' asc');
242 }
243
244
245 $contactTypes = CRM_Contact_BAO_ContactType::getSelectElements();
246 // find all objects
247 $object->find();
248 while ($object->fetch()) {
249 if (!isset($object->mapping_type_id) ||
250 // "1 for Search Builder"
251 $object->mapping_type_id != 1
252 ) {
253 $permission = CRM_Core_Permission::EDIT;
254 if ($key) {
255 $permission = $this->checkPermission($object->id, $object->$key);
256 }
257 if ($permission) {
258 $values[$object->id] = array();
259 CRM_Core_DAO::storeValues($object, $values[$object->id]);
260
261 if (is_a($object, 'CRM_Contact_DAO_RelationshipType')) {
262 $values[$object->id]['contact_type_a_display'] = $contactTypes[$values[$object->id]['contact_type_a']];
263 $values[$object->id]['contact_type_b_display'] = $contactTypes[$values[$object->id]['contact_type_b']];
264 }
265
266 // populate action links
267 $this->action($object, $action, $values[$object->id], $links, $permission);
268
269 if (isset($object->mapping_type_id)) {
270 $mappintTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Mapping', 'mapping_type_id');
271 $values[$object->id]['mapping_type'] = $mappintTypes[$object->mapping_type_id];
272 }
273 }
274 }
275 }
276 $this->assign('rows', $values);
277 }
278
279 /**
280 * Given an object, get the actions that can be associated with this
281 * object. Check the is_active and is_required flags to display valid
282 * actions
283 *
284 * @param CRM_Core_DAO $object the object being considered
285 * @param int $action the base set of actions
286 * @param array $values the array of values that we send to the template
287 * @param array $links the array of links
288 * @param string $permission the permission assigned to this object
289 *
290 * @return void
291 * @access private
292 */
293 function action(&$object, $action, &$values, &$links, $permission, $forceAction = FALSE) {
294 $values['class'] = '';
295 $newAction = $action;
296 $hasDelete = $hasDisable = TRUE;
297
298 if (!empty($values['name']) && in_array($values['name'], array(
299 'encounter_medium', 'case_type', 'case_status'))) {
300 static $caseCount = NULL;
301 if (!isset($caseCount)) {
302 $caseCount = CRM_Case_BAO_Case::caseCount(NULL, FALSE);
303 }
304 if ($caseCount > 0) {
305 $hasDelete = $hasDisable = FALSE;
306 }
307 }
308
309 if (!$forceAction) {
310 if (array_key_exists('is_reserved', $object) && $object->is_reserved) {
311 $values['class'] = 'reserved';
312 // check if object is relationship type
313 $object_type = get_class($object);
314
315 $exceptions = array(
316 'CRM_Contact_BAO_RelationshipType',
317 'CRM_Core_BAO_LocationType',
318 'CRM_Badge_BAO_Layout',
319 );
320
321 if (in_array($object_type, $exceptions)) {
322 $newAction = CRM_Core_Action::VIEW + CRM_Core_Action::UPDATE;
323 }
324 else {
325 $newAction = 0;
326 $values['action'] = '';
327 return;
328 }
329 }
330 else {
331 if (array_key_exists('is_active', $object)) {
332 if ($object->is_active) {
333 if ($hasDisable) {
334 $newAction += CRM_Core_Action::DISABLE;
335 }
336 }
337 else {
338 $newAction += CRM_Core_Action::ENABLE;
339 }
340 }
341 }
342 }
343
344 //CRM-4418, handling edit and delete separately.
345 $permissions = array($permission);
346 if ($hasDelete && ($permission == CRM_Core_Permission::EDIT)) {
347 //previously delete was subset of edit
348 //so for consistency lets grant delete also.
349 $permissions[] = CRM_Core_Permission::DELETE;
350 }
351
352 // make sure we only allow those actions that the user is permissioned for
353 $newAction = $newAction & CRM_Core_Action::mask($permissions);
354
355 $values['action'] = CRM_Core_Action::formLink($links, $newAction, array('id' => $object->id));
356 }
357
358 /**
359 * Edit this entity.
360 *
361 * @param int $mode - what mode for the form ?
362 * @param int $id - id of the entity (for update, view operations)
363 *
364 * @return void
365 */
366 function edit($mode, $id = NULL, $imageUpload = FALSE, $pushUserContext = TRUE) {
367 $controller = new CRM_Core_Controller_Simple($this->editForm(),
368 $this->editName(),
369 $mode,
370 $imageUpload
371 );
372
373 // set the userContext stack
374 if ($pushUserContext) {
375 $session = CRM_Core_Session::singleton();
376 $session->pushUserContext(CRM_Utils_System::url($this->userContext($mode), $this->userContextParams($mode)));
377 }
378 if ($id !== NULL) {
379 $controller->set('id', $id);
380 }
381 $controller->set('BAOName', $this->getBAOName());
382 $this->addValues($controller);
383 $controller->setEmbedded(TRUE);
384 $controller->process();
385 $controller->run();
386 }
387 }
388