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