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