Merge pull request #15986 from civicrm/5.20
[civicrm-core.git] / CRM / Campaign / Form / SurveyType.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 */
17
18 /**
19 * This class generates form components for Option Group.
20 */
21 class CRM_Campaign_Form_SurveyType extends CRM_Admin_Form {
22 protected $_gid;
23
24 /**
25 * The option group name
26 *
27 * @var string
28 */
29 protected $_gName;
30
31 /**
32 * Id
33 *
34 * @var int
35 */
36 protected $_id;
37
38 /**
39 * Action
40 *
41 * @var int
42 */
43 public $_action;
44
45 /**
46 * Set variables up before form is built.
47 */
48 public function preProcess() {
49 $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this);
50
51 if ($this->_action & (CRM_Core_Action::UPDATE | CRM_Core_Action::DELETE)) {
52 $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
53 $this->assign('id', $this->_id);
54 }
55 $this->assign('action', $this->_action);
56 $this->assign('id', $this->_id);
57
58 $this->_BAOName = 'CRM_Core_BAO_OptionValue';
59 $this->_gName = 'activity_type';
60 $this->_gid = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $this->_gName, 'id', 'name');
61
62 $session = CRM_Core_Session::singleton();
63 $url = CRM_Utils_System::url('civicrm/admin/campaign/surveyType', 'reset=1');
64 $session->pushUserContext($url);
65
66 if ($this->_id && in_array($this->_gName, CRM_Core_OptionGroup::$_domainIDGroups)) {
67 $domainID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'domain_id', 'id');
68 if (CRM_Core_Config::domainID() != $domainID) {
69 CRM_Core_Error::fatal(ts('You do not have permission to access this page.'));
70 }
71 }
72 }
73
74 /**
75 * Set default values for the form.
76 * the default values are retrieved from the database.
77 *
78 * @return array
79 * array of default values
80 */
81 public function setDefaultValues() {
82 $defaults = parent::setDefaultValues();
83
84 if (!isset($defaults['weight']) || !$defaults['weight']) {
85 $fieldValues = ['option_group_id' => $this->_gid];
86 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_OptionValue', $fieldValues);
87 }
88
89 return $defaults;
90 }
91
92 /**
93 * Build the form object.
94 */
95 public function buildQuickForm() {
96 parent::buildQuickForm();
97 if ($this->_action & CRM_Core_Action::DELETE) {
98 return;
99 }
100
101 $this->applyFilter('__ALL__', 'trim');
102 $this->add('text', 'label', ts('Title'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'label'), TRUE);
103
104 $this->add('wysiwyg', 'description',
105 ts('Description'),
106 CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'description')
107 );
108
109 $this->add('checkbox', 'is_active', ts('Enabled?'));
110
111 if ($this->_action == CRM_Core_Action::UPDATE &&
112 CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $this->_id, 'is_reserved')
113 ) {
114 $this->freeze(['label', 'is_active']);
115 }
116 $this->add('number', 'weight', ts('Order'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_OptionValue', 'weight'), TRUE);
117
118 $this->assign('id', $this->_id);
119 }
120
121 /**
122 * Process the form submission.
123 */
124 public function postProcess() {
125
126 if ($this->_action & CRM_Core_Action::DELETE) {
127 $fieldValues = ['option_group_id' => $this->_gid];
128 $wt = CRM_Utils_Weight::delWeight('CRM_Core_DAO_OptionValue', $this->_id, $fieldValues);
129
130 if (CRM_Core_BAO_OptionValue::del($this->_id)) {
131 CRM_Core_Session::setStatus(ts('Selected Survey type has been deleted.'), ts('Record Deleted'), 'success');
132 }
133 }
134 else {
135 $params = $ids = [];
136 $params = $this->exportValues();
137
138 // set db value of filter in params if filter is non editable
139 if ($this->_id && !array_key_exists('filter', $params)) {
140 $params['filter'] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionValue', $this->_id, 'filter', 'id');
141 }
142
143 $params['component_id'] = CRM_Core_Component::getComponentID('CiviCampaign');
144 $optionValue = CRM_Core_OptionValue::addOptionValue($params, $this->_gName, $this->_action, $this->_id);
145
146 CRM_Core_Session::setStatus(ts('The Survey type \'%1\' has been saved.', [1 => $optionValue->label]), ts('Saved'), 'success');
147 }
148 }
149
150 }