Update copyright date for 2020
[civicrm-core.git] / CRM / Contact / Form / Task / Result.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
f299f7db 6 | Copyright CiviCRM LLC (c) 2004-2020 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
f299f7db 31 * @copyright CiviCRM LLC (c) 2004-2020
6a488035
TO
32 */
33
34/**
35 * Used for displaying results
6a488035
TO
36 */
37class CRM_Contact_Form_Task_Result extends CRM_Contact_Form_Task {
38
39 /**
fe482240 40 * Build all the data structures needed to build the form.
6a488035 41 */
00be9182 42 public function preProcess() {
6a488035
TO
43 $session = CRM_Core_Session::singleton();
44
45 //this is done to unset searchRows variable assign during AddToHousehold and AddToOrganization
46 $this->set('searchRows', '');
47
48 $context = $this->get('context');
be2fb01f 49 if (in_array($context, [
353ffa53 50 'smog',
7c550ca0 51 'amtg',
be2fb01f 52 ])) {
6a488035
TO
53 $urlParams = 'reset=1&force=1&context=smog&gid=';
54 $urlParams .= ($context == 'smog') ? $this->get('gid') : $this->get('amtgID');
55 $session->replaceUserContext(CRM_Utils_System::url('civicrm/group/search', $urlParams));
56 return;
57 }
58
59 $ssID = $this->get('ssID');
60
61 if ($this->_action == CRM_Core_Action::BASIC) {
62 $fragment = 'search';
63 }
64 elseif ($this->_action == CRM_Core_Action::PROFILE) {
65 $fragment = 'search/builder';
66 }
67 elseif ($this->_action == CRM_Core_Action::ADVANCED) {
68 $fragment = 'search/advanced';
69 }
70 else {
71 $fragment = 'search/custom';
72 }
73
74 $path = 'force=1';
75 if (isset($ssID)) {
76 $path .= "&reset=1&ssID={$ssID}";
77 }
78 if (!CRM_Contact_Form_Search::isSearchContext($context)) {
79 $context = 'search';
80 }
81 $path .= "&context=$context";
82
83 //set the user context for redirection of task actions
84 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $this);
85 if (CRM_Utils_Rule::qfKey($qfKey)) {
86 $path .= "&qfKey=$qfKey";
87 }
88
89 $url = CRM_Utils_System::url('civicrm/contact/' . $fragment, $path);
90 $session->replaceUserContext($url);
6a488035
TO
91 }
92
93 /**
fe482240 94 * Build the form object.
6a488035
TO
95 */
96 public function buildQuickForm() {
be2fb01f 97 $this->addButtons([
69078420
SL
98 [
99 'type' => 'done',
100 'name' => ts('Done'),
101 'isDefault' => TRUE,
102 ],
103 ]);
6a488035 104 }
96025800 105
6a488035 106}