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