APIv4 - Add Address::getCoordinates action
[civicrm-core.git] / CRM / Campaign / Form / Task.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class generates form components for relationship.
20 */
21 class CRM_Campaign_Form_Task extends CRM_Core_Form_Task {
22
23 /**
24 * The array that holds all the voter ids
25 *
26 * @var array
27 */
28 protected $_voterIds;
29
30 /**
31 * Build all the data structures needed to build the form.
32 */
33 public function preProcess() {
34 $values = $this->controller->exportValues('Search');
35
36 $this->_task = $values['task'];
37
38 $ids = $this->getSelectedIDs($values);
39
40 if (!$ids) {
41 $qfKey = CRM_Utils_Request::retrieve('qfKey', 'String', $this);
42 $cacheKey = "civicrm search {$qfKey}";
43 $allCids = Civi::service('prevnext')->getSelection($cacheKey, "getall");
44 $ids = array_keys($allCids[$cacheKey]);
45 $this->assign('totalSelectedVoters', count($ids));
46 }
47
48 if (!empty($ids)) {
49 $this->_componentClause = 'contact_a.id IN ( ' . implode(',', $ids) . ' ) ';
50 $this->assign('totalSelectedVoters', count($ids));
51 }
52 $this->_voterIds = $this->_contactIds = $this->_componentIds = $ids;
53
54 $this->assign('totalSelectedContacts', count($this->_contactIds));
55 $this->setNextUrl('survey');
56 }
57
58 /**
59 * Given the voter id, compute the contact id
60 * since its used for things like send email
61 */
62 public function setContactIDs() {
63 $this->_contactIds = $this->_voterIds;
64 }
65
66 /**
67 * Simple shell that derived classes can call to add buttons to.
68 * the form with a customized title for the main Submit
69 *
70 * @param string $title
71 * Title of the main button.
72 * @param string $nextType
73 * Button type for the form after processing.
74 * @param string $backType
75 * @param bool $submitOnce
76 */
77 public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
78 $this->addButtons([
79 [
80 'type' => $nextType,
81 'name' => $title,
82 'isDefault' => TRUE,
83 ],
84 [
85 'type' => $backType,
86 'name' => ts('Cancel'),
87 ],
88 ]);
89 }
90
91 }