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