Merge pull request #3749 from civicrm/4.4
[civicrm-core.git] / CRM / Admin / Form / ParticipantStatus.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35 class CRM_Admin_Form_ParticipantStatus extends CRM_Admin_Form {
36 public function buildQuickForm() {
37 parent::buildQuickForm();
38
39 if ($this->_action & CRM_Core_Action::DELETE) {
40
41 return;
42
43 }
44
45 $this->applyFilter('__ALL__', 'trim');
46
47 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_ParticipantStatusType');
48
49 $this->add('text', 'name', ts('Name'), NULL, TRUE);
50
51 $this->add('text', 'label', ts('Label'), $attributes['label'], TRUE);
52
53 $classes = array(
54 'Positive' => ts('Positive'),
55 'Pending' => ts('Pending'),
56 'Waiting' => ts('Waiting'),
57 'Negative' => ts('Negative'),
58 );
59
60 $this->add('select', 'class', ts('Class'), $classes, TRUE);
61
62 $this->add('checkbox', 'is_active', ts('Active?'));
63 $this->add('checkbox', 'is_counted', ts('Counted?'));
64
65 $this->add('text', 'weight', ts('Weight'), $attributes['weight'], TRUE);
66
67 $this->add('select', 'visibility_id', ts('Visibility'), CRM_Core_PseudoConstant::visibility(), TRUE);
68 }
69
70 /**
71 * @return array
72 */
73 function setDefaultValues() {
74 $defaults = parent::setDefaultValues();
75 if (empty($defaults['weight'])) {
76 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Event_DAO_ParticipantStatusType');
77 }
78 $this->_isReserved = CRM_Utils_Array::value('is_reserved', $defaults);
79 if ($this->_isReserved) {
80 $this->freeze(array('name', 'class', 'is_active'));
81 }
82 return $defaults;
83 }
84
85 function postProcess() {
86 if ($this->_action & CRM_Core_Action::DELETE) {
87 if (CRM_Event_BAO_ParticipantStatusType::deleteParticipantStatusType($this->_id)) {
88 CRM_Core_Session::setStatus(ts('Selected participant status has been deleted.'), ts('Record Deleted'), 'success');
89 }
90 else {
91 CRM_Core_Session::setStatus(ts('Selected participant status has <strong>NOT</strong> been deleted; there are still participants with this status.'), ts('Sorry'), 'error');
92 }
93 return;
94 }
95
96 $formValues = $this->controller->exportValues($this->_name);
97
98 $params = array(
99 'name' => CRM_Utils_Array::value('name', $formValues),
100 'label' => CRM_Utils_Array::value('label', $formValues),
101 'class' => CRM_Utils_Array::value('class', $formValues),
102 'is_active' => CRM_Utils_Array::value('is_active', $formValues, FALSE),
103 'is_counted' => CRM_Utils_Array::value('is_counted', $formValues, FALSE),
104 'weight' => CRM_Utils_Array::value('weight', $formValues),
105 'visibility_id' => CRM_Utils_Array::value('visibility_id', $formValues),
106 );
107
108 // make sure a malicious POST does not change these on reserved statuses
109 if ($this->_isReserved)unset($params['name'], $params['class'], $params['is_active']);
110
111 if ($this->_action & CRM_Core_Action::UPDATE) {
112
113 $params['id'] = $this->_id;
114
115 }
116
117 if ($this->_id) {
118 $oldWeight = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantStatusType', $this->_id, 'weight', 'id');
119 }
120 else {
121 $oldWeight = 0;
122 }
123 $params['weight'] = CRM_Utils_Weight::updateOtherWeights('CRM_Event_DAO_ParticipantStatusType', $oldWeight, $params['weight']);
124
125 $participantStatus = CRM_Event_BAO_ParticipantStatusType::create($params);
126
127 if ($participantStatus->id) {
128 if ($this->_action & CRM_Core_Action::UPDATE) {
129 CRM_Core_Session::setStatus(ts('The Participant Status has been updated.'), ts('Saved'), 'success');
130 }
131 else {
132 CRM_Core_Session::setStatus(ts('The new Participant Status has been saved.'), ts('Saved'), 'success');
133 }
134 }
135 else {
136 CRM_Core_Session::setStatus(ts('The changes have not been saved.'), ts('Saved'), 'success');
137 }
138 }
139 }
140