Merge pull request #13982 from colemanw/then
[civicrm-core.git] / CRM / Campaign / Form / Survey / Questions.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
32 */
33
34 /**
35 * This class generates form components for processing a survey.
36 */
37 class CRM_Campaign_Form_Survey_Questions extends CRM_Campaign_Form_Survey {
38
39 /**
40 * Set default values for the form.
41 *
42 * Note that in edit/view mode the default values are retrieved from the database.
43 *
44 * @return array
45 * array of default values
46 */
47 public function setDefaultValues() {
48 $defaults = [];
49
50 $ufJoinParams = [
51 'entity_table' => 'civicrm_survey',
52 'module' => 'CiviCampaign',
53 'entity_id' => $this->_surveyId,
54 ];
55
56 list($defaults['contact_profile_id'], $second)
57 = CRM_Core_BAO_UFJoin::getUFGroupIds($ufJoinParams);
58 $defaults['activity_profile_id'] = $second ? array_shift($second) : '';
59
60 return $defaults;
61 }
62
63 /**
64 * Build the form object.
65 */
66 public function buildQuickForm() {
67 $subTypeId = CRM_Core_DAO::getFieldValue('CRM_Campaign_DAO_Survey', $this->_surveyId, 'activity_type_id');
68 if (!CRM_Core_BAO_CustomGroup::autoCreateByActivityType($subTypeId)) {
69 // everything
70 $activityTypes = CRM_Core_PseudoConstant::activityType(TRUE, TRUE, FALSE, 'label', TRUE, FALSE);
71 // FIXME: Displays weird "/\ Array" message; doesn't work with tabs
72 CRM_Core_Session::setStatus(
73 ts(
74 'There are no custom data sets for activity type "%1". To create one, <a href="%2" target="%3">click here</a>.',
75 [
76 1 => $activityTypes[$subTypeId],
77 2 => CRM_Utils_System::url('civicrm/admin/custom/group', 'action=add&reset=1'),
78 3 => '_blank',
79 ]
80 )
81 );
82 }
83
84 $allowCoreTypes = CRM_Campaign_BAO_Survey::surveyProfileTypes();
85 $allowSubTypes = [
86 'ActivityType' => [$subTypeId],
87 ];
88 $entities = [
89 ['entity_name' => 'contact_1', 'entity_type' => 'IndividualModel'],
90 ['entity_name' => 'activity_1', 'entity_type' => 'ActivityModel', 'entity_sub_type' => $subTypeId],
91 ];
92 $this->addProfileSelector('contact_profile_id', ts('Contact Info'), $allowCoreTypes, $allowSubTypes, $entities);
93 $this->addProfileSelector('activity_profile_id', ts('Questions'), $allowCoreTypes, $allowSubTypes, $entities);
94 // Note: Because this is in a tab, we also preload the schema via CRM_Campaign_Form_Survey::preProcess
95
96 parent::buildQuickForm();
97 }
98
99
100 /**
101 * Process the form.
102 */
103 public function postProcess() {
104 // store the submitted values in an array
105 $params = $this->controller->exportValues($this->_name);
106
107 // also update the ProfileModule tables
108 $ufJoinParams = [
109 'is_active' => 1,
110 'module' => 'CiviCampaign',
111 'entity_table' => 'civicrm_survey',
112 'entity_id' => $this->_surveyId,
113 ];
114
115 // first delete all past entries
116 CRM_Core_BAO_UFJoin::deleteAll($ufJoinParams);
117
118 $uf = [];
119 $wt = 2;
120 if (!empty($params['contact_profile_id'])) {
121 $uf[1] = $params['contact_profile_id'];
122 $wt = 1;
123 }
124 if (!empty($params['activity_profile_id'])) {
125 $uf[2] = $params['activity_profile_id'];
126 }
127
128 $uf = array_values($uf);
129 if (!empty($uf)) {
130 foreach ($uf as $weight => $ufGroupId) {
131 $ufJoinParams['weight'] = $weight + $wt;
132 $ufJoinParams['uf_group_id'] = $ufGroupId;
133 CRM_Core_BAO_UFJoin::create($ufJoinParams);
134 unset($ufJoinParams['id']);
135 }
136 }
137
138 parent::endPostProcess();
139 }
140
141 }