Merge pull request #2459 from deepak-srivastava/CRM-14128
[civicrm-core.git] / CRM / Mailing / Form / Task.php
CommitLineData
2cc569f2
PJ
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for relationship
38 *
39 */
40class CRM_Mailing_Form_Task extends CRM_Core_Form {
41
42 /**
43 * the task being performed
44 *
45 * @var int
46 */
47 protected $_task;
48
49 /**
50 * The additional clause that we restrict the search with
51 *
52 * @var string
53 */
54 protected $_componentClause = NULL;
55
56 /**
57 * The array that holds all the component ids
58 *
59 * @var array
60 */
61 protected $_componentIds;
62
2cc569f2
PJ
63 /**
64 * build all the data structures needed to build the form
65 *
66 * @param
67 *
68 * @return void
69 * @access public
70 */
71 function preProcess() {
72 self::preProcessCommon($this);
73 }
74
75 static function preProcessCommon(&$form, $useTable = FALSE) {
2cc569f2
PJ
76 $values = $form->controller->exportValues($form->get('searchFormName'));
77
78 $form->_task = CRM_Utils_Array::value('task', $values);
79 $mailingTasks = CRM_Mailing_Task::tasks();
80 $form->assign('taskName', CRM_Utils_Array::value('task', $values));
81
47546fcf 82 // ids are mailing event queue ids
2cc569f2
PJ
83 $ids = array();
84 if ($values['radio_ts'] == 'ts_sel') {
85 foreach ($values as $name => $value) {
86 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
87 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
88 }
89 }
90 }
91 else {
92 $queryParams = $form->get('queryParams');
93 $sortOrder = null;
94 if ( $form->get( CRM_Utils_Sort::SORT_ORDER ) ) {
95 $sortOrder = $form->get( CRM_Utils_Sort::SORT_ORDER );
96 }
97
98 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
99 CRM_Contact_BAO_Query::MODE_MAILING
100 );
101
102 $result = $query->searchQuery(0, 0, $sortOrder);
103 while ($result->fetch()) {
335038eb 104 $ids[] = $result->mailing_recipients_id;
2cc569f2
PJ
105 }
106 $form->assign('totalSelectedMailingRecipients', $form->get('rowCount'));
107 }
108
109 if (!empty($ids)) {
335038eb 110 $form->_componentClause = ' civicrm_mailing_recipients.id IN ( ' . implode(',', $ids) . ' ) ';
2cc569f2
PJ
111 }
112
2cc569f2
PJ
113 //set the context for redirection for any task actions
114 $session = CRM_Core_Session::singleton();
115
116 $fragment = 'search';
117 if ($form->_action == CRM_Core_Action::ADVANCED) {
118 $fragment .= '/advanced';
119 }
120
121 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
122 $urlParams = 'force=1';
123 if (CRM_Utils_Rule::qfKey($qfKey)) {
124 $urlParams .= "&qfKey=$qfKey";
125 }
126
127 $url = CRM_Utils_System::url('civicrm/contact/' . $fragment, $urlParams);
128 $session = CRM_Core_Session::singleton();
129 $session->replaceUserContext($url);
130 }
131
132 /**
133 * simple shell that derived classes can call to add buttons to
134 * the form with a customized title for the main Submit
135 *
136 * @param string $title title of the main button
137 * @param string $type button type for the form after processing
138 *
139 * @return void
140 * @access public
141 */
142 function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
143 $this->addButtons(array(
144 array(
145 'type' => $nextType,
146 'name' => $title,
147 'isDefault' => TRUE,
148 ),
149 array(
150 'type' => $backType,
151 'name' => ts('Cancel'),
152 ),
153 )
154 );
155 }
156}