Merge pull request #15091 from JKingsnorth/rm-unused-maxlocations
[civicrm-core.git] / CRM / Mailing / Form / Task.php
CommitLineData
2cc569f2
PJ
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
2cc569f2 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
2cc569f2
PJ
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 */
2cc569f2
PJ
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
2cc569f2
PJ
32 */
33
34/**
31aaf096
MW
35 * Class for mailing form task actions.
36 * FIXME: This needs refactoring to properly inherit from CRM_Core_Form_Task and share more functions.
2cc569f2 37 */
31aaf096 38class CRM_Mailing_Form_Task extends CRM_Core_Form_Task {
2cc569f2 39
2cc569f2 40 /**
fe482240 41 * Build all the data structures needed to build the form.
2cc569f2 42 */
00be9182 43 public function preProcess() {
2cc569f2
PJ
44 self::preProcessCommon($this);
45 }
46
e0ef6999 47 /**
c490a46a 48 * @param CRM_Core_Form $form
e0ef6999 49 */
2b089ce1 50 public static function preProcessCommon(&$form) {
2cc569f2
PJ
51 $values = $form->controller->exportValues($form->get('searchFormName'));
52
53 $form->_task = CRM_Utils_Array::value('task', $values);
54 $mailingTasks = CRM_Mailing_Task::tasks();
55 $form->assign('taskName', CRM_Utils_Array::value('task', $values));
56
47546fcf 57 // ids are mailing event queue ids
be2fb01f 58 $ids = [];
2cc569f2
PJ
59 if ($values['radio_ts'] == 'ts_sel') {
60 foreach ($values as $name => $value) {
61 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
62 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
63 }
64 }
65 }
66 else {
67 $queryParams = $form->get('queryParams');
35f7561f 68 $sortOrder = NULL;
353ffa53 69 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
481a74f4 70 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
2cc569f2
PJ
71 }
72
73 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
74 CRM_Contact_BAO_Query::MODE_MAILING
75 );
76
77 $result = $query->searchQuery(0, 0, $sortOrder);
78 while ($result->fetch()) {
335038eb 79 $ids[] = $result->mailing_recipients_id;
2cc569f2
PJ
80 }
81 $form->assign('totalSelectedMailingRecipients', $form->get('rowCount'));
82 }
83
84 if (!empty($ids)) {
35f7561f 85 $form->_componentClause = ' civicrm_mailing_recipients.id IN ( ' . implode(',', $ids) . ' ) ';
2cc569f2
PJ
86 }
87
25606795 88 // set the context for redirection for any task actions
2cc569f2
PJ
89 $session = CRM_Core_Session::singleton();
90
91 $fragment = 'search';
92 if ($form->_action == CRM_Core_Action::ADVANCED) {
93 $fragment .= '/advanced';
94 }
95
96 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
97 $urlParams = 'force=1';
98 if (CRM_Utils_Rule::qfKey($qfKey)) {
99 $urlParams .= "&qfKey=$qfKey";
100 }
101
102 $url = CRM_Utils_System::url('civicrm/contact/' . $fragment, $urlParams);
103 $session = CRM_Core_Session::singleton();
104 $session->replaceUserContext($url);
105 }
106
107 /**
100fef9d 108 * Simple shell that derived classes can call to add buttons to
2cc569f2
PJ
109 * the form with a customized title for the main Submit
110 *
90c8230e
TO
111 * @param string $title
112 * Title of the main button.
fd31fa4c
EM
113 * @param string $nextType
114 * @param string $backType
115 * @param bool $submitOnce
2cc569f2 116 */
00be9182 117 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
be2fb01f 118 $this->addButtons([
7e8c8317
SL
119 [
120 'type' => $nextType,
121 'name' => $title,
122 'isDefault' => TRUE,
123 ],
124 [
125 'type' => $backType,
126 'name' => ts('Cancel'),
127 ],
128 ]);
2cc569f2 129 }
96025800 130
fd31fa4c 131}