copyright and version fixes
[civicrm-core.git] / CRM / Admin / Form / ParticipantStatus.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class 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
e3c75a92 53 $classes = array(
54 'Positive' => ts('Positive'),
55 'Pending' => ts('Pending'),
56 'Waiting' => ts('Waiting'),
57 'Negative' => ts('Negative'),
58 );
59
6a488035
TO
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 function setDefaultValues() {
71 $defaults = parent::setDefaultValues();
a7488080 72 if (empty($defaults['weight'])) {
6a488035
TO
73 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Event_DAO_ParticipantStatusType');
74 }
75 $this->_isReserved = CRM_Utils_Array::value('is_reserved', $defaults);
76 if ($this->_isReserved) {
77 $this->freeze(array('name', 'class', 'is_active'));
78 }
79 return $defaults;
80 }
81
82 function postProcess() {
83 if ($this->_action & CRM_Core_Action::DELETE) {
84 if (CRM_Event_BAO_ParticipantStatusType::deleteParticipantStatusType($this->_id)) {
85 CRM_Core_Session::setStatus(ts('Selected participant status has been deleted.'), ts('Record Deleted'), 'success');
86 }
87 else {
88 CRM_Core_Session::setStatus(ts('Selected participant status has <strong>NOT</strong> been deleted; there are still participants with this status.'), ts('Sorry'), 'error');
89 }
90 return;
91 }
92
93 $formValues = $this->controller->exportValues($this->_name);
94
95 $params = array(
96 'name' => CRM_Utils_Array::value('name', $formValues),
97 'label' => CRM_Utils_Array::value('label', $formValues),
98 'class' => CRM_Utils_Array::value('class', $formValues),
99 'is_active' => CRM_Utils_Array::value('is_active', $formValues, FALSE),
100 'is_counted' => CRM_Utils_Array::value('is_counted', $formValues, FALSE),
101 'weight' => CRM_Utils_Array::value('weight', $formValues),
102 'visibility_id' => CRM_Utils_Array::value('visibility_id', $formValues),
103 );
104
105 // make sure a malicious POST does not change these on reserved statuses
106 if ($this->_isReserved)unset($params['name'], $params['class'], $params['is_active']);
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