Merge pull request #23751 from eileenmcnaughton/test_member
[civicrm-core.git] / CRM / Admin / Form / ParticipantStatusType.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 class CRM_Admin_Form_ParticipantStatusType extends CRM_Admin_Form {
18
19 /**
20 * @var bool
21 */
22 public $submitOnce = TRUE;
23
24 /**
25 * Explicitly declare the entity api name.
26 */
27 public function getDefaultEntity() {
28 return 'ParticipantStatusType';
29 }
30
31 /**
32 * Build form.
33 */
34 public function buildQuickForm() {
35 parent::buildQuickForm();
36
37 if ($this->_action & CRM_Core_Action::DELETE) {
38
39 return;
40
41 }
42
43 $this->applyFilter('__ALL__', 'trim');
44
45 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_ParticipantStatusType');
46
47 $this->add('text', 'name', ts('Name'), NULL, TRUE);
48
49 $this->add('text', 'label', ts('Label'), $attributes['label'], TRUE);
50
51 $this->addSelect('class', ['required' => TRUE]);
52
53 $this->add('checkbox', 'is_active', ts('Active?'));
54 $this->add('checkbox', 'is_counted', ts('Counted?'));
55
56 $this->add('number', 'weight', ts('Order'), $attributes['weight'], TRUE);
57
58 $this->addSelect('visibility_id', ['label' => ts('Visibility'), 'required' => TRUE]);
59
60 $this->assign('id', $this->_id);
61 }
62
63 /**
64 * Set default values.
65 *
66 * @return array
67 */
68 public function setDefaultValues() {
69 $defaults = parent::setDefaultValues();
70 if (empty($defaults['weight'])) {
71 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Event_DAO_ParticipantStatusType');
72 }
73 $this->_isReserved = $defaults['is_reserved'] ?? NULL;
74 if ($this->_isReserved) {
75 $this->freeze(['name', 'class', 'is_active']);
76 }
77 return $defaults;
78 }
79
80 public function postProcess() {
81 if ($this->_action & CRM_Core_Action::DELETE) {
82 if (CRM_Event_BAO_ParticipantStatusType::deleteParticipantStatusType($this->_id)) {
83 CRM_Core_Session::setStatus(ts('Selected participant status has been deleted.'), ts('Record Deleted'), 'success');
84 }
85 else {
86 CRM_Core_Session::setStatus(ts('Selected participant status has <strong>NOT</strong> been deleted; there are still participants with this status.'), ts('Sorry'), 'error');
87 }
88 return;
89 }
90
91 $formValues = $this->controller->exportValues($this->_name);
92
93 $params = [
94 'name' => $formValues['name'] ?? NULL,
95 'label' => $formValues['label'] ?? NULL,
96 'class' => $formValues['class'] ?? NULL,
97 'is_active' => $formValues['is_active'] ?? FALSE,
98 'is_counted' => $formValues['is_counted'] ?? FALSE,
99 'weight' => $formValues['weight'] ?? NULL,
100 'visibility_id' => $formValues['visibility_id'] ?? NULL,
101 ];
102
103 // make sure a malicious POST does not change these on reserved statuses
104 if ($this->_isReserved) {
105 unset($params['name'], $params['class'], $params['is_active']);
106 }
107
108 if ($this->_action & CRM_Core_Action::UPDATE) {
109
110 $params['id'] = $this->_id;
111
112 }
113
114 if ($this->_id) {
115 $oldWeight = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantStatusType', $this->_id, 'weight', 'id');
116 }
117 else {
118 $oldWeight = 0;
119 }
120 $params['weight'] = CRM_Utils_Weight::updateOtherWeights('CRM_Event_DAO_ParticipantStatusType', $oldWeight, $params['weight']);
121
122 $participantStatus = CRM_Event_BAO_ParticipantStatusType::create($params);
123
124 if ($participantStatus->id) {
125 if ($this->_action & CRM_Core_Action::UPDATE) {
126 CRM_Core_Session::setStatus(ts('The Participant Status has been updated.'), ts('Saved'), 'success');
127 }
128 else {
129 CRM_Core_Session::setStatus(ts('The new Participant Status has been saved.'), ts('Saved'), 'success');
130 }
131 }
132 else {
133 CRM_Core_Session::setStatus(ts('The changes have not been saved.'), ts('Saved'), 'success');
134 }
135 }
136
137 }