Merge pull request #3208 from eileenmcnaughton/comments
[civicrm-core.git] / CRM / Core / Page / Basic.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36
37
38
39abstract 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 }
4d5c2eb5 216 $baoString = $this->getBAOName();
217 $object = new $baoString();
6a488035
TO
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 = '';
a7488080 227 if (!empty($fields['title'])) {
6a488035
TO
228 $key = 'title';
229 }
a7488080 230 elseif (!empty($fields['label'])) {
6a488035
TO
231 $key = 'label';
232 }
a7488080 233 elseif (!empty($fields['name'])) {
6a488035
TO
234 $key = 'name';
235 }
236
237 if (trim($sort)) {
238 $object->orderBy($sort);
239 }
240 elseif ($key) {
241 $object->orderBy($key . ' asc');
242 }
243
b500fbea
EM
244 //@todo FIXME - using the CRM_Core_DAO::VALUE_SEPARATOR creates invalid html - if you can find the form
245 // this is loaded onto then replace with something like '__' & test
246 $separator = CRM_Core_DAO::VALUE_SEPARATOR;
247 $contactTypes = CRM_Contact_BAO_ContactType::getSelectElements(FALSE, TRUE, $separator);
6a488035
TO
248 // find all objects
249 $object->find();
250 while ($object->fetch()) {
251 if (!isset($object->mapping_type_id) ||
252 // "1 for Search Builder"
253 $object->mapping_type_id != 1
254 ) {
255 $permission = CRM_Core_Permission::EDIT;
256 if ($key) {
257 $permission = $this->checkPermission($object->id, $object->$key);
258 }
259 if ($permission) {
260 $values[$object->id] = array();
261 CRM_Core_DAO::storeValues($object, $values[$object->id]);
262
77d0b1f8 263 if (is_a($object, 'CRM_Contact_DAO_RelationshipType')) {
264 $values[$object->id]['contact_type_a_display'] = $contactTypes[$values[$object->id]['contact_type_a']];
265 $values[$object->id]['contact_type_b_display'] = $contactTypes[$values[$object->id]['contact_type_b']];
266 }
6a488035
TO
267
268 // populate action links
269 $this->action($object, $action, $values[$object->id], $links, $permission);
270
271 if (isset($object->mapping_type_id)) {
cbf48754 272 $mappintTypes = CRM_Core_PseudoConstant::get('CRM_Core_DAO_Mapping', 'mapping_type_id');
6a488035
TO
273 $values[$object->id]['mapping_type'] = $mappintTypes[$object->mapping_type_id];
274 }
275 }
276 }
277 }
278 $this->assign('rows', $values);
279 }
280
281 /**
282 * Given an object, get the actions that can be associated with this
283 * object. Check the is_active and is_required flags to display valid
284 * actions
285 *
286 * @param CRM_Core_DAO $object the object being considered
287 * @param int $action the base set of actions
288 * @param array $values the array of values that we send to the template
289 * @param array $links the array of links
290 * @param string $permission the permission assigned to this object
291 *
292 * @return void
293 * @access private
294 */
295 function action(&$object, $action, &$values, &$links, $permission, $forceAction = FALSE) {
296 $values['class'] = '';
297 $newAction = $action;
298 $hasDelete = $hasDisable = TRUE;
299
a7488080 300 if (!empty($values['name']) && in_array($values['name'], array(
6a488035
TO
301 'encounter_medium', 'case_type', 'case_status'))) {
302 static $caseCount = NULL;
303 if (!isset($caseCount)) {
304 $caseCount = CRM_Case_BAO_Case::caseCount(NULL, FALSE);
305 }
306 if ($caseCount > 0) {
307 $hasDelete = $hasDisable = FALSE;
308 }
309 }
310
311 if (!$forceAction) {
312 if (array_key_exists('is_reserved', $object) && $object->is_reserved) {
313 $values['class'] = 'reserved';
314 // check if object is relationship type
315 $object_type = get_class($object);
d2e138ee
KJ
316
317 $exceptions = array(
318 'CRM_Contact_BAO_RelationshipType',
319 'CRM_Core_BAO_LocationType',
320 'CRM_Badge_BAO_Layout',
321 );
322
323 if (in_array($object_type, $exceptions)) {
6a488035
TO
324 $newAction = CRM_Core_Action::VIEW + CRM_Core_Action::UPDATE;
325 }
326 else {
327 $newAction = 0;
328 $values['action'] = '';
329 return;
330 }
331 }
332 else {
333 if (array_key_exists('is_active', $object)) {
334 if ($object->is_active) {
335 if ($hasDisable) {
336 $newAction += CRM_Core_Action::DISABLE;
337 }
338 }
339 else {
340 $newAction += CRM_Core_Action::ENABLE;
341 }
342 }
343 }
344 }
345
346 //CRM-4418, handling edit and delete separately.
347 $permissions = array($permission);
348 if ($hasDelete && ($permission == CRM_Core_Permission::EDIT)) {
349 //previously delete was subset of edit
350 //so for consistency lets grant delete also.
351 $permissions[] = CRM_Core_Permission::DELETE;
352 }
353
354 // make sure we only allow those actions that the user is permissioned for
355 $newAction = $newAction & CRM_Core_Action::mask($permissions);
356
357 $values['action'] = CRM_Core_Action::formLink($links, $newAction, array('id' => $object->id));
358 }
359
360 /**
361 * Edit this entity.
362 *
363 * @param int $mode - what mode for the form ?
364 * @param int $id - id of the entity (for update, view operations)
365 *
366 * @return void
367 */
368 function edit($mode, $id = NULL, $imageUpload = FALSE, $pushUserContext = TRUE) {
369 $controller = new CRM_Core_Controller_Simple($this->editForm(),
370 $this->editName(),
371 $mode,
372 $imageUpload
373 );
374
375 // set the userContext stack
376 if ($pushUserContext) {
377 $session = CRM_Core_Session::singleton();
378 $session->pushUserContext(CRM_Utils_System::url($this->userContext($mode), $this->userContextParams($mode)));
379 }
380 if ($id !== NULL) {
381 $controller->set('id', $id);
382 }
383 $controller->set('BAOName', $this->getBAOName());
384 $this->addValues($controller);
385 $controller->setEmbedded(TRUE);
386 $controller->process();
387 $controller->run();
388 }
389}
390