Merge pull request #8347 from eileenmcnaughton/tidy-up
[civicrm-core.git] / CRM / Contact / Form / Task / Result.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
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
31 * @copyright CiviCRM LLC (c) 2004-2016
32 */
33
34 /**
35 * Used for displaying results
36 */
37 class CRM_Contact_Form_Task_Result extends CRM_Contact_Form_Task {
38
39 /**
40 * Build all the data structures needed to build the form.
41 */
42 public function preProcess() {
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');
49 if (in_array($context, array(
50 'smog',
51 'amtg',
52 ))) {
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);
91 }
92
93 /**
94 * Build the form object.
95 */
96 public function buildQuickForm() {
97 $this->addButtons(array(
98 array(
99 'type' => 'done',
100 'name' => ts('Done'),
101 'isDefault' => TRUE,
102 ),
103 )
104 );
105 }
106
107 }