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