3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2015
35 * This class generates form components for processing a survey.
37 class CRM_Campaign_Form_Survey_Questions
extends CRM_Campaign_Form_Survey
{
40 * Set default values for the form.
42 * Note that in edit/view mode the default values are retrieved from the database.
45 * array of default values
47 public function setDefaultValues() {
50 $ufJoinParams = array(
51 'entity_table' => 'civicrm_survey',
52 'module' => 'CiviCampaign',
53 'entity_id' => $this->_surveyId
,
56 list($defaults['contact_profile_id'], $second)
57 = CRM_Core_BAO_UFJoin
::getUFGroupIds($ufJoinParams);
58 $defaults['activity_profile_id'] = $second ?
array_shift($second) : '';
64 * Build the form object.
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 $activityTypes = CRM_Core_PseudoConstant
::activityType(TRUE, TRUE, FALSE, 'label', TRUE, FALSE); // everything
70 // FIXME: Displays weird "/\ Array" message; doesn't work with tabs
71 CRM_Core_Session
::setStatus(
73 'There are no custom data sets for activity type "%1". To create one, <a href="%2" target="%3">click here</a>.',
75 1 => $activityTypes[$subTypeId],
76 2 => CRM_Utils_System
::url('civicrm/admin/custom/group', 'action=add&reset=1'),
83 $allowCoreTypes = CRM_Campaign_BAO_Survey
::surveyProfileTypes();
84 $allowSubTypes = array(
85 'ActivityType' => array($subTypeId),
88 array('entity_name' => 'contact_1', 'entity_type' => 'IndividualModel'),
89 array('entity_name' => 'activity_1', 'entity_type' => 'ActivityModel', 'entity_sub_type' => $subTypeId),
91 $this->addProfileSelector('contact_profile_id', ts('Contact Info'), $allowCoreTypes, $allowSubTypes, $entities);
92 $this->addProfileSelector('activity_profile_id', ts('Questions'), $allowCoreTypes, $allowSubTypes, $entities);
93 // Note: Because this is in a tab, we also preload the schema via CRM_Campaign_Form_Survey::preProcess
95 parent
::buildQuickForm();
102 public function postProcess() {
103 // store the submitted values in an array
104 $params = $this->controller
->exportValues($this->_name
);
106 // also update the ProfileModule tables
107 $ufJoinParams = array(
109 'module' => 'CiviCampaign',
110 'entity_table' => 'civicrm_survey',
111 'entity_id' => $this->_surveyId
,
114 // first delete all past entries
115 CRM_Core_BAO_UFJoin
::deleteAll($ufJoinParams);
119 if (!empty($params['contact_profile_id'])) {
120 $uf[1] = $params['contact_profile_id'];
123 if (!empty($params['activity_profile_id'])) {
124 $uf[2] = $params['activity_profile_id'];
127 $uf = array_values($uf);
129 foreach ($uf as $weight => $ufGroupId) {
130 $ufJoinParams['weight'] = $weight +
$wt;
131 $ufJoinParams['uf_group_id'] = $ufGroupId;
132 CRM_Core_BAO_UFJoin
::create($ufJoinParams);
133 unset($ufJoinParams['id']);
137 parent
::endPostProcess();