commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Admin / Form / ParticipantStatusType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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 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 $this->addSelect('class', array('required' => TRUE));
54
55 $this->add('checkbox', 'is_active', ts('Active?'));
56 $this->add('checkbox', 'is_counted', ts('Counted?'));
57
58 $this->add('text', 'weight', ts('Order'), $attributes['weight'], TRUE);
59
60 $this->addSelect('visibility_id', array('label' => ts('Visibility'), 'required' => TRUE));
61
62 $this->assign('id', $this->_id);
63 }
64
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 = CRM_Utils_Array::value('is_reserved', $defaults);
74 if ($this->_isReserved) {
75 $this->freeze(array('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 = array(
94 'name' => CRM_Utils_Array::value('name', $formValues),
95 'label' => CRM_Utils_Array::value('label', $formValues),
96 'class' => CRM_Utils_Array::value('class', $formValues),
97 'is_active' => CRM_Utils_Array::value('is_active', $formValues, FALSE),
98 'is_counted' => CRM_Utils_Array::value('is_counted', $formValues, FALSE),
99 'weight' => CRM_Utils_Array::value('weight', $formValues),
100 'visibility_id' => CRM_Utils_Array::value('visibility_id', $formValues),
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 }