Merge in 5.26
[civicrm-core.git] / CRM / Mailing / Form / Task.php
CommitLineData
2cc569f2
PJ
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
2cc569f2 5 | |
bc77d7c0
TO
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
2cc569f2 9 +--------------------------------------------------------------------+
d25dd0ee 10 */
2cc569f2
PJ
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
2cc569f2
PJ
16 */
17
18/**
31aaf096
MW
19 * Class for mailing form task actions.
20 * FIXME: This needs refactoring to properly inherit from CRM_Core_Form_Task and share more functions.
2cc569f2 21 */
31aaf096 22class CRM_Mailing_Form_Task extends CRM_Core_Form_Task {
2cc569f2 23
2cc569f2 24 /**
fe482240 25 * Build all the data structures needed to build the form.
2cc569f2 26 */
00be9182 27 public function preProcess() {
2cc569f2
PJ
28 self::preProcessCommon($this);
29 }
30
e0ef6999 31 /**
c490a46a 32 * @param CRM_Core_Form $form
e0ef6999 33 */
2b089ce1 34 public static function preProcessCommon(&$form) {
2cc569f2
PJ
35 $values = $form->controller->exportValues($form->get('searchFormName'));
36
9c1bc317 37 $form->_task = $values['task'] ?? NULL;
2cc569f2
PJ
38 $mailingTasks = CRM_Mailing_Task::tasks();
39 $form->assign('taskName', CRM_Utils_Array::value('task', $values));
40
47546fcf 41 // ids are mailing event queue ids
be2fb01f 42 $ids = [];
2cc569f2
PJ
43 if ($values['radio_ts'] == 'ts_sel') {
44 foreach ($values as $name => $value) {
45 if (substr($name, 0, CRM_Core_Form::CB_PREFIX_LEN) == CRM_Core_Form::CB_PREFIX) {
46 $ids[] = substr($name, CRM_Core_Form::CB_PREFIX_LEN);
47 }
48 }
49 }
50 else {
51 $queryParams = $form->get('queryParams');
35f7561f 52 $sortOrder = NULL;
353ffa53 53 if ($form->get(CRM_Utils_Sort::SORT_ORDER)) {
481a74f4 54 $sortOrder = $form->get(CRM_Utils_Sort::SORT_ORDER);
2cc569f2
PJ
55 }
56
57 $query = new CRM_Contact_BAO_Query($queryParams, NULL, NULL, FALSE, FALSE,
58 CRM_Contact_BAO_Query::MODE_MAILING
59 );
60
61 $result = $query->searchQuery(0, 0, $sortOrder);
62 while ($result->fetch()) {
335038eb 63 $ids[] = $result->mailing_recipients_id;
2cc569f2
PJ
64 }
65 $form->assign('totalSelectedMailingRecipients', $form->get('rowCount'));
66 }
67
68 if (!empty($ids)) {
35f7561f 69 $form->_componentClause = ' civicrm_mailing_recipients.id IN ( ' . implode(',', $ids) . ' ) ';
2cc569f2
PJ
70 }
71
25606795 72 // set the context for redirection for any task actions
2cc569f2
PJ
73 $session = CRM_Core_Session::singleton();
74
75 $fragment = 'search';
76 if ($form->_action == CRM_Core_Action::ADVANCED) {
77 $fragment .= '/advanced';
78 }
79
80 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $form);
81 $urlParams = 'force=1';
82 if (CRM_Utils_Rule::qfKey($qfKey)) {
83 $urlParams .= "&qfKey=$qfKey";
84 }
85
86 $url = CRM_Utils_System::url('civicrm/contact/' . $fragment, $urlParams);
87 $session = CRM_Core_Session::singleton();
88 $session->replaceUserContext($url);
89 }
90
91 /**
100fef9d 92 * Simple shell that derived classes can call to add buttons to
2cc569f2
PJ
93 * the form with a customized title for the main Submit
94 *
90c8230e
TO
95 * @param string $title
96 * Title of the main button.
fd31fa4c
EM
97 * @param string $nextType
98 * @param string $backType
99 * @param bool $submitOnce
2cc569f2 100 */
00be9182 101 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
be2fb01f 102 $this->addButtons([
7e8c8317
SL
103 [
104 'type' => $nextType,
105 'name' => $title,
106 'isDefault' => TRUE,
107 ],
108 [
109 'type' => $backType,
110 'name' => ts('Cancel'),
111 ],
112 ]);
2cc569f2 113 }
96025800 114
fd31fa4c 115}