Merge pull request #4628 from priyankakaran26/recurring-entity-improvements-phase-2
[civicrm-core.git] / CRM / Contact / Form / Task / Result.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * Used for displaying results
38 *
39 *
40 */
41 class CRM_Contact_Form_Task_Result extends CRM_Contact_Form_Task {
42
43 /**
44 * build all the data structures needed to build the form
45 *
46 * @return void
47 * @access public
48 */
49 function preProcess() {
50 $session = CRM_Core_Session::singleton();
51
52 //this is done to unset searchRows variable assign during AddToHousehold and AddToOrganization
53 $this->set('searchRows', '');
54
55 $context = $this->get('context');
56 if (in_array($context, array(
57 'smog', 'amtg'))) {
58 $urlParams = 'reset=1&force=1&context=smog&gid=';
59 $urlParams .= ($context == 'smog') ? $this->get('gid') : $this->get('amtgID');
60 $session->replaceUserContext(CRM_Utils_System::url('civicrm/group/search', $urlParams));
61 return;
62 }
63
64 $ssID = $this->get('ssID');
65
66 if ($this->_action == CRM_Core_Action::BASIC) {
67 $fragment = 'search';
68 }
69 elseif ($this->_action == CRM_Core_Action::PROFILE) {
70 $fragment = 'search/builder';
71 }
72 elseif ($this->_action == CRM_Core_Action::ADVANCED) {
73 $fragment = 'search/advanced';
74 }
75 else {
76 $fragment = 'search/custom';
77 }
78
79 $path = 'force=1';
80 if (isset($ssID)) {
81 $path .= "&reset=1&ssID={$ssID}";
82 }
83 if (!CRM_Contact_Form_Search::isSearchContext($context)) {
84 $context = 'search';
85 }
86 $path .= "&context=$context";
87
88 //set the user context for redirection of task actions
89 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $this);
90 if (CRM_Utils_Rule::qfKey($qfKey)) {
91 $path .= "&qfKey=$qfKey";
92 }
93
94 $url = CRM_Utils_System::url('civicrm/contact/' . $fragment, $path);
95 $session->replaceUserContext($url);
96 return;
97 }
98
99 /**
100 * Build the form object
101 *
102 * @return void
103 * @access public
104 */
105 public function buildQuickForm() {
106 $this->addButtons(array(
107 array(
108 'type' => 'done',
109 'name' => ts('Done'),
110 'isDefault' => TRUE,
111 ),
112 )
113 );
114 }
115 }
116