INFRA-132 - Fix spacing of @return tag in comments
[civicrm-core.git] / CRM / Campaign / Form / SurveyType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
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
36 /**
37 * This class generates form components for Option Group
38 *
39 */
40 class CRM_Campaign_Form_SurveyType extends CRM_Admin_Form {
41 protected $_gid;
42
43 /**
44 * The option group name
45 *
46 * @var string
47 * @static
48 */
49 protected $_gName;
50
51 /**
52 * Id
53 *
54 * @var int
55 */
56 protected $_id;
57
58 /**
59 * Action
60 *
61 * @var int
62 */
63 protected $_action;
64
65 /**
66 * Set variables up before form is built
67 *
68 * @param null
69 *
70 * @return void
71 */
72 function preProcess() {
73 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this);
74
75 if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::DELETE)) {
76 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
77 $this->assign('id', $this->_id);
78 }
79 $this->assign('action', $this->_action);
80 $this->assign('id', $this->_id);
81
82 $this->_BAOName = 'CRM_Core_BAO_OptionValue';
83 $this->_gName = 'activity_type';
84 $this->_gid = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $this->_gName, 'id', 'name');
85
86 $session = CRM_Core_Session::singleton();
87 $url = CRM_Utils_System::url('civicrm/admin/campaign/surveyType', 'reset=1');
88 $session->pushUserContext($url);
89
90 if ($this->_id && in_array($this->_gName, CRM_Core_OptionGroup::$_domainIDGroups)) {
91 $domainID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'domain_id', 'id');
92 if (CRM_Core_Config::domainID() != $domainID) {
93 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
94 }
95 }
96 }
97
98 /**
99 * Set default values for the form.
100 * the default values are retrieved from the database.
101 *
102 * @param null
103 *
104 * @return array
105 * array of default values
106 */
107 public function setDefaultValues() {
108 $defaults = parent::setDefaultValues();
109
110 if (!isset($defaults['weight']) || !$defaults['weight']) {
111 $fieldValues = array('option_group_id' => $this->_gid);
112 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_OptionValue', $fieldValues);
113 }
114
115 return $defaults;
116 }
117
118 /**
119 * Build the form object
120 *
121 * @return void
122 */
123 public function buildQuickForm() {
124 parent::buildQuickForm();
125 if ($this->_action & CRM_Core_Action::DELETE) {
126 return;
127 }
128
129 $this->applyFilter('__ALL__', 'trim');
130 $this->add('text', 'label', ts('Title'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'label'), TRUE);
131
132 $this->addWysiwyg('description',
133 ts('Description'),
134 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'description')
135 );
136
137 $this->add('checkbox', 'is_active', ts('Enabled?'));
138
139 if ($this->_action == CRM_Core_Action::UPDATE &&
140 CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $this->_id, 'is_reserved')
141 ) {
142 $this->freeze(array('label', 'is_active'));
143 }
144 $this->add('text', 'weight', ts('Order'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'weight'), TRUE);
145
146 $this->assign('id', $this->_id);
147 }
148
149 /**
150 * Process the form submission
151 *
152 *
153 * @return void
154 */
155 public function postProcess() {
156
157 if ($this->_action & CRM_Core_Action::DELETE) {
158 $fieldValues = array('option_group_id' => $this->_gid);
159 $wt = CRM_Utils_Weight::delWeight('CRM_Core_DAO_OptionValue', $this->_id, $fieldValues);
160
161 if (CRM_Core_BAO_OptionValue::del($this->_id)) {
162 CRM_Core_Session::setStatus(ts('Selected Survey type has been deleted.'), ts('Record Deleted'), 'success');
163 }
164 }
165 else {
166 $params = $ids = array();
167 $params = $this->exportValues();
168
169 // set db value of filter in params if filter is non editable
170 if ($this->_id && !array_key_exists('filter', $params)) {
171 $params['filter'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'filter', 'id');
172 }
173
174 $groupParams = array('name' => ($this->_gName));
175 $params['component_id'] = CRM_Core_Component::getComponentID('CiviCampaign');
176 $optionValue = CRM_Core_OptionValue::addOptionValue($params, $groupParams, $this->_action, $this->_id);
177
178 CRM_Core_Session::setStatus(ts('The Survey type \'%1\' has been saved.', array(1 => $optionValue->label)), ts('Saved'), 'success');
179 }
180 }
181 }