bulk comment fix
[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
fd31fa4c 130 * @param int $mode mode of the page
6a488035 131 *
fd31fa4c 132 * @return \CRM_Core_Page_Basic
6a488035
TO
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 *
da6b46f4 195 * @internal param int $action
6a488035
TO
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
da6b46f4
EM
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 * @param bool $forceAction
6a488035
TO
293 *
294 * @return void
295 * @access private
296 */
297 function action(&$object, $action, &$values, &$links, $permission, $forceAction = FALSE) {
298 $values['class'] = '';
299 $newAction = $action;
300 $hasDelete = $hasDisable = TRUE;
301
a7488080 302 if (!empty($values['name']) && in_array($values['name'], array(
6a488035
TO
303 'encounter_medium', 'case_type', 'case_status'))) {
304 static $caseCount = NULL;
305 if (!isset($caseCount)) {
306 $caseCount = CRM_Case_BAO_Case::caseCount(NULL, FALSE);
307 }
308 if ($caseCount > 0) {
309 $hasDelete = $hasDisable = FALSE;
310 }
311 }
312
313 if (!$forceAction) {
314 if (array_key_exists('is_reserved', $object) && $object->is_reserved) {
315 $values['class'] = 'reserved';
316 // check if object is relationship type
317 $object_type = get_class($object);
d2e138ee
KJ
318
319 $exceptions = array(
320 'CRM_Contact_BAO_RelationshipType',
321 'CRM_Core_BAO_LocationType',
322 'CRM_Badge_BAO_Layout',
323 );
324
325 if (in_array($object_type, $exceptions)) {
6a488035
TO
326 $newAction = CRM_Core_Action::VIEW + CRM_Core_Action::UPDATE;
327 }
328 else {
329 $newAction = 0;
330 $values['action'] = '';
331 return;
332 }
333 }
334 else {
335 if (array_key_exists('is_active', $object)) {
336 if ($object->is_active) {
337 if ($hasDisable) {
338 $newAction += CRM_Core_Action::DISABLE;
339 }
340 }
341 else {
342 $newAction += CRM_Core_Action::ENABLE;
343 }
344 }
345 }
346 }
347
348 //CRM-4418, handling edit and delete separately.
349 $permissions = array($permission);
350 if ($hasDelete && ($permission == CRM_Core_Permission::EDIT)) {
351 //previously delete was subset of edit
352 //so for consistency lets grant delete also.
353 $permissions[] = CRM_Core_Permission::DELETE;
354 }
355
356 // make sure we only allow those actions that the user is permissioned for
357 $newAction = $newAction & CRM_Core_Action::mask($permissions);
358
359 $values['action'] = CRM_Core_Action::formLink($links, $newAction, array('id' => $object->id));
360 }
361
362 /**
363 * Edit this entity.
364 *
365 * @param int $mode - what mode for the form ?
366 * @param int $id - id of the entity (for update, view operations)
367 *
77b97be7
EM
368 * @param bool $imageUpload
369 * @param bool $pushUserContext
370 *
6a488035
TO
371 * @return void
372 */
373 function edit($mode, $id = NULL, $imageUpload = FALSE, $pushUserContext = TRUE) {
374 $controller = new CRM_Core_Controller_Simple($this->editForm(),
375 $this->editName(),
376 $mode,
377 $imageUpload
378 );
379
380 // set the userContext stack
381 if ($pushUserContext) {
382 $session = CRM_Core_Session::singleton();
383 $session->pushUserContext(CRM_Utils_System::url($this->userContext($mode), $this->userContextParams($mode)));
384 }
385 if ($id !== NULL) {
386 $controller->set('id', $id);
387 }
388 $controller->set('BAOName', $this->getBAOName());
389 $this->addValues($controller);
390 $controller->setEmbedded(TRUE);
391 $controller->process();
392 $controller->run();
393 }
394}
395