Merge pull request #16802 from colemanw/coalesce
[civicrm-core.git] / CRM / Core / Controller.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 * This class acts as our base controller class and adds additional
14 * functionality and smarts to the base QFC. Specifically we create
15 * our own action classes and handle the transitions ourselves by
16 * simulating a state machine. We also create direct jump links to any
17 * page that can be used universally.
18 *
19 * This concept has been discussed on the PEAR list and the QFC FAQ
20 * goes into a few details. Please check
21 * http://pear.php.net/manual/en/package.html.html-quickform-controller.faq.php
22 * for other useful tips and suggestions
23 *
24 * @package CRM
ca5cec67 25 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
26 */
27
28require_once 'HTML/QuickForm/Controller.php';
29require_once 'HTML/QuickForm/Action/Direct.php';
30
28518c90
EM
31/**
32 * Class CRM_Core_Controller
33 */
6a488035
TO
34class CRM_Core_Controller extends HTML_QuickForm_Controller {
35
36 /**
d09edf64 37 * The title associated with this controller.
6a488035
TO
38 *
39 * @var string
40 */
41 protected $_title;
42
43 /**
d09edf64 44 * The key associated with this controller.
6a488035
TO
45 *
46 * @var string
47 */
48 public $_key;
49
50 /**
d09edf64 51 * The name of the session scope where values are stored.
6a488035
TO
52 *
53 * @var object
54 */
55 protected $_scope;
56
57 /**
d09edf64 58 * The state machine associated with this controller.
6a488035
TO
59 *
60 * @var object
61 */
62 protected $_stateMachine;
63
64 /**
65 * Is this object being embedded in another object. If
66 * so the display routine needs to not do any work. (The
67 * parent object takes care of the display)
68 *
d51c6add 69 * @var bool
6a488035
TO
70 */
71 protected $_embedded = FALSE;
72
73 /**
74 * After entire form execution complete,
75 * do we want to skip control redirection.
76 * Default - It get redirect to user context.
77 *
78 * Useful when we run form in non civicrm context
79 * and we need to transfer control back.(eg. drupal)
80 *
d51c6add 81 * @var bool
6a488035
TO
82 */
83 protected $_skipRedirection = FALSE;
84
85 /**
86 * Are we in print mode? if so we need to modify the display
87 * functionality to do a minimal display :)
88 *
d51c6add 89 * @var bool
6a488035
TO
90 */
91 public $_print = 0;
92
93 /**
94 * Should we generate a qfKey, true by default
95 *
d51c6add 96 * @var bool
6a488035
TO
97 */
98 public $_generateQFKey = TRUE;
99
100 /**
d09edf64 101 * QF response type.
4bf0b605
AH
102 *
103 * @var string
6a488035
TO
104 */
105 public $_QFResponseType = 'html';
106
107 /**
d09edf64 108 * Cache the smarty template for efficiency reasons.
6a488035
TO
109 *
110 * @var CRM_Core_Smarty
111 */
112 static protected $_template;
113
114 /**
d09edf64 115 * Cache the session for efficiency reasons.
6a488035
TO
116 *
117 * @var CRM_Core_Session
118 */
119 static protected $_session;
120
121 /**
d09edf64 122 * The parent of this form if embedded.
6a488035
TO
123 *
124 * @var object
125 */
126 protected $_parent = NULL;
127
128 /**
d09edf64 129 * The destination if set will override the destination the code wants to send it to.
6a488035 130 *
e97c66ff 131 * @var string
6a488035
TO
132 */
133 public $_destination = NULL;
134
3ab88a8c
DL
135 /**
136 * The entry url for a top level form or wizard. Typically the URL with a reset=1
137 * used to redirect back to when we land into some session wierdness
138 *
139 * @var string
140 */
141 public $_entryURL = NULL;
142
6a488035
TO
143 /**
144 * All CRM single or multi page pages should inherit from this class.
145 *
4bf0b605
AH
146 * @param string $title
147 * Descriptive title of the controller.
148 * @param bool $modal
149 * Whether controller is modal.
150 * @param mixed $mode
151 * @param string $scope
152 * Name of session if we want unique scope, used only by Controller_Simple.
153 * @param bool $addSequence
154 * Should we add a unique sequence number to the end of the key.
2aa397bc 155 * @param bool $ignoreKey
4bf0b605 156 * Should we not set a qfKey for this controller (for standalone forms).
e97c66ff 157 *
158 * @throws \CRM_Core_Exception
6a488035 159 */
7c550ca0 160 public function __construct(
6a488035
TO
161 $title = NULL,
162 $modal = TRUE,
163 $mode = NULL,
164 $scope = NULL,
165 $addSequence = FALSE,
166 $ignoreKey = FALSE
167 ) {
168 // this has to true for multiple tab session fix
169 $addSequence = TRUE;
170
171 // let the constructor initialize this, should happen only once
172 if (!isset(self::$_template)) {
173 self::$_template = CRM_Core_Smarty::singleton();
174 self::$_session = CRM_Core_Session::singleton();
175 }
176
3ab88a8c
DL
177 // lets try to get it from the session and/or the request vars
178 // we do this early on in case there is a fatal error in retrieving the
179 // key and/or session
7c550ca0
WA
180 $this->_entryURL
181 = CRM_Utils_Request::retrieve('entryURL', 'String', $this);
3ab88a8c 182
6a488035 183 // add a unique validable key to the name
e69299b1 184 $name = CRM_Utils_System::getClassName($this);
6a488035
TO
185 if ($name == 'CRM_Core_Controller_Simple' && !empty($scope)) {
186 // use form name if we have, since its a lot better and
187 // definitely different for different forms
188 $name = $scope;
189 }
353ffa53 190 $name = $name . '_' . $this->key($name, $addSequence, $ignoreKey);
6a488035
TO
191 $this->_title = $title;
192 if ($scope) {
193 $this->_scope = $scope;
194 }
195 else {
196 $this->_scope = CRM_Utils_System::getClassName($this);
197 }
198 $this->_scope = $this->_scope . '_' . $this->_key;
199
200 // only use the civicrm cache if we have a valid key
201 // else we clash with other users CRM-7059
202 if (!empty($this->_key)) {
be2fb01f 203 CRM_Core_Session::registerAndRetrieveSessionObjects([
6a488035 204 "_{$name}_container",
be2fb01f
CW
205 ['CiviCRM', $this->_scope],
206 ]);
6a488035
TO
207 }
208
6ef04c72 209 parent::__construct($name, $modal);
6a488035
TO
210
211 $snippet = CRM_Utils_Array::value('snippet', $_REQUEST);
212 if ($snippet) {
213 if ($snippet == 3) {
214 $this->_print = CRM_Core_Smarty::PRINT_PDF;
215 }
216 elseif ($snippet == 4) {
217 // this is used to embed fragments of a form
218 $this->_print = CRM_Core_Smarty::PRINT_NOFORM;
219 self::$_template->assign('suppressForm', TRUE);
220 $this->_generateQFKey = FALSE;
221 }
222 elseif ($snippet == 5) {
da8f8f42
CW
223 // mode deprecated in favor of json
224 // still used by dashlets, probably nothing else
6a488035
TO
225 $this->_print = CRM_Core_Smarty::PRINT_NOFORM;
226 }
fc05b8da 227 // Respond with JSON if in AJAX context (also support legacy value '6')
be2fb01f 228 elseif (in_array($snippet, [CRM_Core_Smarty::PRINT_JSON, 6])) {
fc05b8da 229 $this->_print = CRM_Core_Smarty::PRINT_JSON;
6a488035
TO
230 $this->_QFResponseType = 'json';
231 }
232 else {
233 $this->_print = CRM_Core_Smarty::PRINT_SNIPPET;
234 }
235 }
236
2aa397bc 237 // if the request has a reset value, initialize the controller session
a7488080 238 if (!empty($_GET['reset'])) {
6a488035 239 $this->reset();
3ab88a8c
DL
240
241 // in this case we'll also cache the url as a hidden form variable, this allows us to
242 // redirect in case the session has disappeared on us
243 $this->_entryURL = CRM_Utils_System::makeURL(NULL, TRUE, FALSE, NULL, TRUE);
244 $this->set('entryURL', $this->_entryURL);
6a488035
TO
245 }
246
247 // set the key in the session
248 // do this at the end so we have initialized the object
249 // and created the scope etc
250 $this->set('qfKey', $this->_key);
251
6a488035 252 // also retrieve and store destination in session
3ab88a8c
DL
253 $this->_destination = CRM_Utils_Request::retrieve(
254 'civicrmDestination',
255 'String',
256 $this,
257 FALSE,
258 NULL,
259 $_REQUEST
6a488035
TO
260 );
261 }
262
00be9182 263 public function fini() {
be2fb01f 264 CRM_Core_BAO_Cache::storeSessionToCache([
518fa0ee
SL
265 "_{$this->_name}_container",
266 ['CiviCRM', $this->_scope],
267 ], TRUE);
6a488035
TO
268 }
269
a0ee3941 270 /**
100fef9d 271 * @param string $name
a0ee3941
EM
272 * @param bool $addSequence
273 * @param bool $ignoreKey
274 *
275 * @return mixed|string
276 */
00be9182 277 public function key($name, $addSequence = FALSE, $ignoreKey = FALSE) {
6a488035
TO
278 $config = CRM_Core_Config::singleton();
279
280 if (
281 $ignoreKey ||
282 (isset($config->keyDisable) && $config->keyDisable)
283 ) {
284 return NULL;
285 }
286
287 $key = CRM_Utils_Array::value('qfKey', $_REQUEST, NULL);
288 if (!$key && $_SERVER['REQUEST_METHOD'] === 'GET') {
289 $key = CRM_Core_Key::get($name, $addSequence);
290 }
291 else {
292 $key = CRM_Core_Key::validate($key, $name, $addSequence);
293 }
294
295 if (!$key) {
c02edd0e 296 $this->invalidKey();
6a488035
TO
297 }
298
299 $this->_key = $key;
300
301 return $key;
302 }
303
304 /**
305 * Process the request, overrides the default QFC run method
306 * This routine actually checks if the QFC is modal and if it
307 * is the first invalid page, if so it call the requested action
308 * if not, it calls the display action on the first invalid page
309 * avoids the issue of users hitting the back button and getting
310 * a broken page
311 *
312 * This run is basically a composition of the original run and the
313 * jump action
314 *
4bf0b605 315 * @return mixed
6a488035 316 */
00be9182 317 public function run() {
6a488035
TO
318 // the names of the action and page should be saved
319 // note that this is split into two, because some versions of
320 // php 5.x core dump on the triple assignment :)
321 $this->_actionName = $this->getActionName();
322 list($pageName, $action) = $this->_actionName;
323
324 if ($this->isModal()) {
325 if (!$this->isValid($pageName)) {
326 $pageName = $this->findInvalid();
327 $action = 'display';
328 }
329 }
330
331 // note that based on action, control might not come back!!
332 // e.g. if action is a valid JUMP, u basically do a redirect
333 // to the appropriate place
334 $this->wizardHeader($pageName);
335 return $this->_pages[$pageName]->handle($action);
336 }
337
a0ee3941
EM
338 /**
339 * @return bool
340 */
00be9182 341 public function validate() {
6a488035
TO
342 $this->_actionName = $this->getActionName();
343 list($pageName, $action) = $this->_actionName;
344
345 $page = &$this->_pages[$pageName];
346
347 $data = &$this->container();
348 $this->applyDefaults($pageName);
349 $page->isFormBuilt() or $page->buildForm();
350 // We use defaults and constants as if they were submitted
351 $data['values'][$pageName] = $page->exportValues();
352 $page->loadValues($data['values'][$pageName]);
353 // Is the page now valid?
354 if (TRUE === ($data['valid'][$pageName] = $page->validate())) {
355 return TRUE;
356 }
357 return $page->_errors;
358 }
359
360 /**
8eedd10a 361 * Helper function to add all the needed default actions.
362 *
363 * Note that the framework redefines all of the default QFC actions.
6a488035 364 *
7c550ca0
WA
365 * @param string $uploadDirectory to store all the uploaded files
366 * @param array $uploadNames for the various upload buttons (note u can have more than 1 upload)
6a488035 367 */
00be9182 368 public function addActions($uploadDirectory = NULL, $uploadNames = NULL) {
be2fb01f 369 $names = [
6a488035
TO
370 'display' => 'CRM_Core_QuickForm_Action_Display',
371 'next' => 'CRM_Core_QuickForm_Action_Next',
372 'back' => 'CRM_Core_QuickForm_Action_Back',
373 'process' => 'CRM_Core_QuickForm_Action_Process',
374 'cancel' => 'CRM_Core_QuickForm_Action_Cancel',
375 'refresh' => 'CRM_Core_QuickForm_Action_Refresh',
376 'reload' => 'CRM_Core_QuickForm_Action_Reload',
377 'done' => 'CRM_Core_QuickForm_Action_Done',
378 'jump' => 'CRM_Core_QuickForm_Action_Jump',
379 'submit' => 'CRM_Core_QuickForm_Action_Submit',
be2fb01f 380 ];
6a488035
TO
381
382 foreach ($names as $name => $classPath) {
383 $action = new $classPath($this->_stateMachine);
384 $this->addAction($name, $action);
385 }
386
387 $this->addUploadAction($uploadDirectory, $uploadNames);
388 }
389
390 /**
0880a9d0 391 * Getter method for stateMachine.
6a488035 392 *
c490a46a 393 * @return CRM_Core_StateMachine
6a488035 394 */
00be9182 395 public function getStateMachine() {
6a488035
TO
396 return $this->_stateMachine;
397 }
398
399 /**
0880a9d0 400 * Setter method for stateMachine.
6a488035 401 *
c490a46a 402 * @param CRM_Core_StateMachine $stateMachine
6a488035 403 */
00be9182 404 public function setStateMachine($stateMachine) {
6a488035
TO
405 $this->_stateMachine = $stateMachine;
406 }
407
408 /**
100fef9d 409 * Add pages to the controller. Note that the controller does not really care
6a488035
TO
410 * the order in which the pages are added
411 *
c490a46a 412 * @param CRM_Core_StateMachine $stateMachine
2a6da8d7 413 * @param \const|int $action the mode in which the state machine is operating
b44e3f84 414 * typically this will be add/view/edit
6a488035 415 */
00be9182 416 public function addPages(&$stateMachine, $action = CRM_Core_Action::NONE) {
6a488035
TO
417 $pages = $stateMachine->getPages();
418 foreach ($pages as $name => $value) {
419 $className = CRM_Utils_Array::value('className', $value, $name);
353ffa53
TO
420 $title = CRM_Utils_Array::value('title', $value);
421 $options = CRM_Utils_Array::value('options', $value);
6a488035 422 $stateName = CRM_Utils_String::getClassName($className);
a7488080 423 if (!empty($value['className'])) {
6a488035
TO
424 $formName = $name;
425 }
426 else {
427 $formName = CRM_Utils_String::getClassName($name);
428 }
429
430 $ext = CRM_Extension_System::singleton()->getMapper();
431 if ($ext->isExtensionClass($className)) {
2aa397bc 432 require_once $ext->classToPath($className);
6a488035
TO
433 }
434 else {
2aa397bc 435 require_once str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';
6a488035
TO
436 }
437 $$stateName = new $className($stateMachine->find($className), $action, 'post', $formName);
438 if ($title) {
439 $$stateName->setTitle($title);
440 }
441 if ($options) {
442 $$stateName->setOptions($options);
443 }
42a40a1c 444 if (property_exists($$stateName, 'urlPath')) {
445 $$stateName->urlPath = explode('/', (string) CRM_Utils_System::getUrlPath());
118e964e 446 }
6a488035
TO
447 $this->addPage($$stateName);
448 $this->addAction($stateName, new HTML_QuickForm_Action_Direct());
449
450 //CRM-6342 -we need kill the reference here,
451 //as we have deprecated reference object creation.
452 unset($$stateName);
453 }
454 }
455
456 /**
457 * QFC does not provide native support to have different 'submit' buttons.
458 * We introduce this notion to QFC by using button specific data. Thus if
459 * we have two submit buttons, we could have one displayed as a button and
460 * the other as an image, both are of type 'submit'.
461 *
a6c01b45
CW
462 * @return string
463 * the name of the button that has been pressed by the user
6a488035 464 */
00be9182 465 public function getButtonName() {
6a488035 466 $data = &$this->container();
914d3734 467 return $data['_qf_button_name'] ?? NULL;
6a488035
TO
468 }
469
470 /**
100fef9d 471 * Destroy all the session state of the controller.
6a488035 472 */
00be9182 473 public function reset() {
6a488035
TO
474 $this->container(TRUE);
475 self::$_session->resetScope($this->_scope);
476 }
477
478 /**
100fef9d 479 * Virtual function to do any processing of data.
8eedd10a 480 *
6a488035
TO
481 * Sometimes it is useful for the controller to actually process data.
482 * This is typically used when we need the controller to figure out
483 * what pages are potentially involved in this wizard. (this is dynamic
484 * and can change based on the arguments
6a488035 485 */
2aa397bc
TO
486 public function process() {
487 }
6a488035
TO
488
489 /**
0880a9d0 490 * Store the variable with the value in the form scope.
6a488035 491 *
6a0b768e
TO
492 * @param string|array $name name of the variable or an assoc array of name/value pairs
493 * @param mixed $value
494 * Value of the variable if string.
6a488035 495 */
00be9182 496 public function set($name, $value = NULL) {
6a488035
TO
497 self::$_session->set($name, $value, $this->_scope);
498 }
499
500 /**
0880a9d0 501 * Get the variable from the form scope.
6a488035 502 *
6a0b768e 503 * @param string $name
16b10e64 504 * name of the variable.
6a488035 505 *
6a488035 506 * @return mixed
6a488035 507 */
00be9182 508 public function get($name) {
6a488035
TO
509 return self::$_session->get($name, $this->_scope);
510 }
511
512 /**
0880a9d0 513 * Create the header for the wizard from the list of pages.
6a488035
TO
514 * Store the created header in smarty
515 *
6a0b768e
TO
516 * @param string $currentPageName
517 * Name of the page being displayed.
6a488035
TO
518 *
519 * @return array
6a488035 520 */
00be9182 521 public function wizardHeader($currentPageName) {
be2fb01f
CW
522 $wizard = [];
523 $wizard['steps'] = [];
353ffa53 524 $count = 0;
6a488035
TO
525 foreach ($this->_pages as $name => $page) {
526 $count++;
be2fb01f 527 $wizard['steps'][] = [
6a488035
TO
528 'name' => $name,
529 'title' => $page->getTitle(),
530 //'link' => $page->getLink ( ),
531 'link' => NULL,
532 'step' => TRUE,
533 'valid' => TRUE,
534 'stepNumber' => $count,
535 'collapsed' => FALSE,
be2fb01f 536 ];
6a488035
TO
537
538 if ($name == $currentPageName) {
539 $wizard['currentStepNumber'] = $count;
540 $wizard['currentStepName'] = $name;
541 $wizard['currentStepTitle'] = $page->getTitle();
542 }
543 }
544
545 $wizard['stepCount'] = $count;
546
547 $this->addWizardStyle($wizard);
548
549 $this->assign('wizard', $wizard);
550 return $wizard;
551 }
552
a0ee3941 553 /**
c490a46a 554 * @param array $wizard
a0ee3941 555 */
00be9182 556 public function addWizardStyle(&$wizard) {
be2fb01f 557 $wizard['style'] = [
6a488035
TO
558 'barClass' => '',
559 'stepPrefixCurrent' => '&raquo;',
765283ef 560 'stepPrefixPast' => '&#x2714;',
6a488035
TO
561 'stepPrefixFuture' => ' ',
562 'subStepPrefixCurrent' => '&nbsp;&nbsp;',
563 'subStepPrefixPast' => '&nbsp;&nbsp;',
564 'subStepPrefixFuture' => '&nbsp;&nbsp;',
565 'showTitle' => 1,
be2fb01f 566 ];
6a488035
TO
567 }
568
569 /**
0880a9d0 570 * Assign value to name in template.
6a488035 571 *
c490a46a 572 * @param string $var
6a0b768e 573 * @param mixed $value
8eedd10a 574 * Value of variable.
6a488035 575 */
00be9182 576 public function assign($var, $value = NULL) {
6a488035
TO
577 self::$_template->assign($var, $value);
578 }
579
4a9538ac 580 /**
0880a9d0 581 * Assign value to name in template by reference.
4a9538ac 582 *
c490a46a 583 * @param string $var
6a0b768e 584 * @param mixed $value
8eedd10a 585 * (reference) value of variable.
4a9538ac 586 */
00be9182 587 public function assign_by_ref($var, &$value) {
6a488035
TO
588 self::$_template->assign_by_ref($var, $value);
589 }
590
4a9538ac 591 /**
0880a9d0 592 * Appends values to template variables.
4a9538ac
CW
593 *
594 * @param array|string $tpl_var the template variable name(s)
6a0b768e
TO
595 * @param mixed $value
596 * The value to append.
4a9538ac
CW
597 * @param bool $merge
598 */
2aa397bc 599 public function append($tpl_var, $value = NULL, $merge = FALSE) {
4a9538ac
CW
600 self::$_template->append($tpl_var, $value, $merge);
601 }
602
603 /**
0880a9d0 604 * Returns an array containing template variables.
4a9538ac
CW
605 *
606 * @param string $name
2a6da8d7 607 *
4a9538ac
CW
608 * @return array
609 */
2aa397bc 610 public function get_template_vars($name = NULL) {
4a9538ac
CW
611 return self::$_template->get_template_vars($name);
612 }
613
6a488035 614 /**
0880a9d0 615 * Setter for embedded.
6a488035 616 *
6a0b768e 617 * @param bool $embedded
6a488035 618 */
00be9182 619 public function setEmbedded($embedded) {
6a488035
TO
620 $this->_embedded = $embedded;
621 }
622
623 /**
0880a9d0 624 * Getter for embedded.
6a488035 625 *
7c550ca0 626 * @return bool
a6c01b45 627 * return the embedded value
6a488035 628 */
00be9182 629 public function getEmbedded() {
6a488035
TO
630 return $this->_embedded;
631 }
632
633 /**
0880a9d0 634 * Setter for skipRedirection.
6a488035 635 *
6a0b768e 636 * @param bool $skipRedirection
6a488035 637 */
00be9182 638 public function setSkipRedirection($skipRedirection) {
6a488035
TO
639 $this->_skipRedirection = $skipRedirection;
640 }
641
642 /**
0880a9d0 643 * Getter for skipRedirection.
6a488035 644 *
7c550ca0 645 * @return bool
a6c01b45 646 * return the skipRedirection value
6a488035 647 */
00be9182 648 public function getSkipRedirection() {
6a488035
TO
649 return $this->_skipRedirection;
650 }
651
a0ee3941
EM
652 /**
653 * @param null $fileName
654 */
00be9182 655 public function setWord($fileName = NULL) {
6a488035 656 //Mark as a CSV file.
d42a224c 657 CRM_Utils_System::setHttpHeader('Content-Type', 'application/vnd.ms-word');
6a488035
TO
658
659 //Force a download and name the file using the current timestamp.
660 if (!$fileName) {
661 $fileName = 'Contacts_' . $_SERVER['REQUEST_TIME'] . '.doc';
662 }
d42a224c 663 CRM_Utils_System::setHttpHeader("Content-Disposition", "attachment; filename=Contacts_$fileName");
6a488035
TO
664 }
665
a0ee3941
EM
666 /**
667 * @param null $fileName
668 */
00be9182 669 public function setExcel($fileName = NULL) {
6a488035 670 //Mark as an excel file.
d42a224c 671 CRM_Utils_System::setHttpHeader('Content-Type', 'application/vnd.ms-excel');
6a488035
TO
672
673 //Force a download and name the file using the current timestamp.
674 if (!$fileName) {
675 $fileName = 'Contacts_' . $_SERVER['REQUEST_TIME'] . '.xls';
676 }
677
d42a224c 678 CRM_Utils_System::setHttpHeader("Content-Disposition", "attachment; filename=Contacts_$fileName");
6a488035
TO
679 }
680
681 /**
0880a9d0 682 * Setter for print.
6a488035 683 *
6a0b768e 684 * @param bool $print
6a488035 685 */
00be9182 686 public function setPrint($print) {
6a488035
TO
687 if ($print == "xls") {
688 $this->setExcel();
689 }
690 elseif ($print == "doc") {
691 $this->setWord();
692 }
693 $this->_print = $print;
694 }
695
696 /**
0880a9d0 697 * Getter for print.
6a488035 698 *
7c550ca0 699 * @return bool
a6c01b45 700 * return the print value
6a488035 701 */
00be9182 702 public function getPrint() {
6a488035
TO
703 return $this->_print;
704 }
705
a0ee3941
EM
706 /**
707 * @return string
708 */
00be9182 709 public function getTemplateFile() {
6a488035
TO
710 if ($this->_print) {
711 if ($this->_print == CRM_Core_Smarty::PRINT_PAGE) {
712 return 'CRM/common/print.tpl';
713 }
714 elseif ($this->_print == 'xls' || $this->_print == 'doc') {
715 return 'CRM/Contact/Form/Task/Excel.tpl';
716 }
717 else {
718 return 'CRM/common/snippet.tpl';
719 }
720 }
721 else {
722 $config = CRM_Core_Config::singleton();
723 return 'CRM/common/' . strtolower($config->userFramework) . '.tpl';
724 }
725 }
726
a0ee3941
EM
727 /**
728 * @param $uploadDir
729 * @param $uploadNames
730 */
6a488035
TO
731 public function addUploadAction($uploadDir, $uploadNames) {
732 if (empty($uploadDir)) {
733 $config = CRM_Core_Config::singleton();
734 $uploadDir = $config->uploadDir;
735 }
736
737 if (empty($uploadNames)) {
738 $uploadNames = $this->get('uploadNames');
739 if (!empty($uploadNames)) {
740 $uploadNames = array_merge($uploadNames,
741 CRM_Core_BAO_File::uploadNames()
742 );
743 }
744 else {
745 $uploadNames = CRM_Core_BAO_File::uploadNames();
746 }
747 }
748
749 $action = new CRM_Core_QuickForm_Action_Upload($this->_stateMachine,
750 $uploadDir,
751 $uploadNames
752 );
753 $this->addAction('upload', $action);
754 }
755
a0ee3941
EM
756 /**
757 * @param $parent
758 */
6a488035
TO
759 public function setParent($parent) {
760 $this->_parent = $parent;
761 }
762
a0ee3941
EM
763 /**
764 * @return object
765 */
6a488035
TO
766 public function getParent() {
767 return $this->_parent;
768 }
769
a0ee3941
EM
770 /**
771 * @return string
772 */
6a488035
TO
773 public function getDestination() {
774 return $this->_destination;
775 }
776
a0ee3941
EM
777 /**
778 * @param null $url
779 * @param bool $setToReferer
780 */
6a488035
TO
781 public function setDestination($url = NULL, $setToReferer = FALSE) {
782 if (empty($url)) {
783 if ($setToReferer) {
784 $url = $_SERVER['HTTP_REFERER'];
785 }
786 else {
787 $config = CRM_Core_Config::singleton();
788 $url = $config->userFrameworkBaseURL;
789 }
790 }
791
792 $this->_destination = $url;
793 $this->set('civicrmDestination', $this->_destination);
794 }
795
a0ee3941
EM
796 /**
797 * @return mixed
798 */
6a488035
TO
799 public function cancelAction() {
800 $actionName = $this->getActionName();
801 list($pageName, $action) = $actionName;
802 return $this->_pages[$pageName]->cancelAction();
803 }
6a488035 804
c02edd0e 805 /**
8eedd10a 806 * Write a simple fatal error message.
c02edd0e 807 *
8eedd10a 808 * Other controllers can decide to do something else and present the user a better message
809 * and/or redirect to the same page with a reset url
c02edd0e
DL
810 */
811 public function invalidKey() {
3ab88a8c
DL
812 self::invalidKeyCommon();
813 }
814
815 public function invalidKeyCommon() {
5d6aaf6b 816 $msg = ts("We can't load the requested web page. This page requires cookies to be enabled in your browser settings. Please check this setting and enable cookies (if they are not enabled). Then try again. If this error persists, contact the site administrator for assistance.") . '<br /><br />' . ts('Site Administrators: This error may indicate that users are accessing this page using a domain or URL other than the configured Base URL. EXAMPLE: Base URL is http://example.org, but some users are accessing the page via http://www.example.org or a domain alias like http://myotherexample.org.') . '<br /><br />' . ts('Error type: Could not find a valid session key.');
c02edd0e
DL
817 CRM_Core_Error::fatal($msg);
818 }
819
3ab88a8c 820 /**
6ef7bd91
CB
821 * Instead of outputting a fatal error message, we'll just redirect
822 * to the entryURL if present
3ab88a8c
DL
823 */
824 public function invalidKeyRedirect() {
6ef7bd91
CB
825 if ($this->_entryURL && $url_parts = parse_url($this->_entryURL)) {
826 // CRM-16832: Ensure local redirects only.
827 if (!empty($url_parts['path'])) {
828 // Prepend a slash, but don't duplicate it.
829 $redirect_url = '/' . ltrim($url_parts['path'], '/');
830 if (!empty($url_parts['query'])) {
831 $redirect_url .= '?' . $url_parts['query'];
832 }
833 CRM_Core_Session::setStatus(ts('Your browser session has expired and we are unable to complete your form submission. We have returned you to the initial step so you can complete and resubmit the form. If you experience continued difficulties, please contact us for assistance.'));
834 return CRM_Utils_System::redirect($redirect_url);
835 }
3ab88a8c 836 }
6ef7bd91 837 self::invalidKeyCommon();
3ab88a8c
DL
838 }
839
c02edd0e 840}