Merge pull request #22826 from colemanw/api4EntityTypes
[civicrm-core.git] / CRM / Event / Form / ManageEvent / EventInfo.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/**
6a488035 13 * @package CRM
ca5cec67 14 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
15 */
16
17/**
3bdf1f3a 18 * This class generates form components for processing Event.
6a488035
TO
19 */
20class CRM_Event_Form_ManageEvent_EventInfo extends CRM_Event_Form_ManageEvent {
21
22 /**
66f9e52b 23 * Event type.
90b461f1 24 * @var int
6a488035
TO
25 */
26 protected $_eventType = NULL;
27
28 /**
66f9e52b 29 * Set variables up before form is built.
6a488035 30 */
00be9182 31 public function preProcess() {
2a4e505f 32 parent::preProcess();
e4b857f8 33 $this->setSelectedChild('settings');
6a488035 34
8c605c27
MD
35 $entityID = $this->_id ?: $this->_templateId;
36 if ($entityID) {
37 $this->assign('entityID', $entityID);
6a488035 38 $eventType = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event',
8c605c27 39 $entityID,
6a488035
TO
40 'event_type_id'
41 );
42 }
43 else {
44 $eventType = 'null';
45 }
46
47 $showLocation = FALSE;
48 // when custom data is included in this page
a7488080 49 if (!empty($_POST['hidden_custom'])) {
6a488035
TO
50 $this->set('type', 'Event');
51 $this->set('subType', CRM_Utils_Array::value('event_type_id', $_POST));
d6dd7344 52 $this->assign('customDataSubType', CRM_Utils_Array::value('event_type_id', $_POST));
5fdec754 53 $this->set('entityId', $entityID);
6a488035 54
5fdec754 55 CRM_Custom_Form_CustomData::preProcess($this, NULL, $this->_eventType, 1, 'Event', $entityID);
6a488035
TO
56 CRM_Custom_Form_CustomData::buildQuickForm($this);
57 CRM_Custom_Form_CustomData::setDefaultValues($this);
58 }
59 }
60
61 /**
3bdf1f3a 62 * Set default values for the form.
6a488035 63 *
3bdf1f3a 64 * For edit/view mode he default values are retrieved from the database.
6a488035 65 */
00be9182 66 public function setDefaultValues() {
6a488035
TO
67 $defaults = parent::setDefaultValues();
68
69 // in update mode, we need to set custom data subtype to tpl
a7488080 70 if (!empty($defaults['event_type_id'])) {
6a488035
TO
71 $this->assign('customDataSubType', $defaults['event_type_id']);
72 }
73
74 $this->_showHide = new CRM_Core_ShowHideBlocks();
75 // Show waitlist features or event_full_text if max participants set
a7488080 76 if (!empty($defaults['max_participants'])) {
6a488035 77 $this->_showHide->addShow('id-waitlist');
a7488080 78 if (!empty($defaults['has_waitlist'])) {
6a488035
TO
79 $this->_showHide->addShow('id-waitlist-text');
80 $this->_showHide->addHide('id-event_full');
81 }
82 else {
83 $this->_showHide->addHide('id-waitlist-text');
84 $this->_showHide->addShow('id-event_full');
85 }
86 }
87 else {
88 $this->_showHide->addHide('id-event_full');
89 $this->_showHide->addHide('id-waitlist');
90 $this->_showHide->addHide('id-waitlist-text');
91 }
92
93 $this->_showHide->addToTemplate();
94 $this->assign('elemType', 'table-row');
95
96 $this->assign('description', CRM_Utils_Array::value('description', $defaults));
97
98 // Provide suggested text for event full and waitlist messages if they're empty
99 $defaults['event_full_text'] = CRM_Utils_Array::value('event_full_text', $defaults, ts('This event is currently full.'));
100
101 $defaults['waitlist_text'] = CRM_Utils_Array::value('waitlist_text', $defaults, ts('This event is currently full. However you can register now and get added to a waiting list. You will be notified if spaces become available.'));
10672453 102 $defaults['template_id'] = $this->_templateId;
cedee7b0
FW
103
104 $defaults['event_tz'] = CRM_Utils_Array::value('event_tz', $defaults, CRM_Core_Config::singleton()->userSystem->getTimeZoneString());
105
106 // Convert start and end date defaults to event time zone.
107 if (!empty($defaults['start_date'])) {
108 $defaults['start_date'] = CRM_Utils_Date::convertTimeZone($defaults['start_date'], $defaults['event_tz']);
109 }
110 if (!empty($defaults['end_date'])) {
111 $defaults['end_date'] = CRM_Utils_Date::convertTimeZone($defaults['end_date'], $defaults['event_tz']);
112 }
113
6a488035
TO
114 return $defaults;
115 }
116
117 /**
66f9e52b 118 * Build the form object.
6a488035
TO
119 */
120 public function buildQuickForm() {
6a488035
TO
121 //need to assign custom data type and subtype to the template
122 $this->assign('customDataType', 'Event');
123 if ($this->_eventType) {
124 $this->assign('customDataSubType', $this->_eventType);
125 }
6a488035
TO
126
127 $this->_first = TRUE;
128 $this->applyFilter('__ALL__', 'trim');
129 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event');
130
131 if ($this->_isTemplate) {
132 $this->add('text', 'template_title', ts('Template Title'), $attributes['template_title'], TRUE);
133 }
134
135 if ($this->_action & CRM_Core_Action::ADD) {
136 $eventTemplates = CRM_Event_PseudoConstant::eventTemplates();
137 if (CRM_Utils_System::isNull($eventTemplates) && !$this->_isTemplate) {
be2fb01f
CW
138 $url = CRM_Utils_System::url('civicrm/admin/eventTemplate', ['reset' => 1]);
139 CRM_Core_Session::setStatus(ts('If you find that you are creating multiple events with similar settings, you may want to use the <a href="%1">Event Templates</a> feature to streamline your workflow.', [1 => $url]), ts('Tip'), 'info');
6a488035
TO
140 }
141 if (!CRM_Utils_System::isNull($eventTemplates)) {
be2fb01f 142 $this->add('select', 'template_id', ts('From Template'), ['' => ts('- select -')] + $eventTemplates, FALSE, ['class' => 'crm-select2 huge']);
6a488035 143 }
bfd83a87
CW
144 // Make sure this form redirects properly
145 $this->preventAjaxSubmit();
6a488035
TO
146 }
147
148 // add event title, make required if this is not a template
149 $this->add('text', 'title', ts('Event Title'), $attributes['event_title'], !$this->_isTemplate);
150
e1462487 151 $this->addSelect('event_type_id',
be2fb01f 152 ['onChange' => "CRM.buildCustomData( 'Event', this.value );"],
e1462487 153 TRUE
6a488035
TO
154 );
155
156 //CRM-7362 --add campaigns.
157 $campaignId = NULL;
158 if ($this->_id) {
159 $campaignId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_id, 'campaign_id');
160 }
161 CRM_Campaign_BAO_Campaign::addCampaign($this, $campaignId);
162
be2fb01f 163 $this->addSelect('default_role_id', [], TRUE);
6a488035 164
be2fb01f 165 $this->addSelect('participant_listing_id', ['placeholder' => ts('Disabled'), 'option_url' => NULL]);
6a488035
TO
166
167 $this->add('textarea', 'summary', ts('Event Summary'), $attributes['summary']);
be2fb01f 168 $this->add('wysiwyg', 'description', ts('Complete Description'), $attributes['event_description'] + ['preset' => 'civievent']);
0781df9b 169 $this->addElement('checkbox', 'is_public', ts('Public Event'));
77b95c29 170 $this->addElement('checkbox', 'is_share', ts('Add footer region with Twitter, Facebook and LinkedIn share buttons and scripts?'));
0781df9b 171 $this->addElement('checkbox', 'is_map', ts('Include Map to Event Location'));
6a488035 172
cedee7b0
FW
173 $this->addSelect('event_tz', ['placeholder' => ts('- Select time zone -')], TRUE);
174
67cc69d7 175 $this->add('datepicker', 'start_date', ts('Start'), [], !$this->_isTemplate, ['time' => TRUE]);
8b827219 176 $this->add('datepicker', 'end_date', ts('End'), [], FALSE, ['time' => TRUE]);
6a488035 177
d70ada2a 178 $this->add('number', 'max_participants', ts('Max Number of Participants'),
be2fb01f 179 ['onchange' => "if (this.value != '') {cj('#id-waitlist').show(); showHideByValue('has_waitlist','0','id-waitlist-text','table-row','radio',false); showHideByValue('has_waitlist','0','id-event_full','table-row','radio',true); return;} else {cj('#id-event_full, #id-waitlist, #id-waitlist-text').hide(); return;}"]
6a488035
TO
180 );
181 $this->addRule('max_participants', ts('Max participants should be a positive number'), 'positiveInteger');
182
183 $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
184 $waitlist = 0;
185 if (in_array('On waitlist', $participantStatuses) and in_array('Pending from waitlist', $participantStatuses)) {
be2fb01f 186 $this->addElement('checkbox', 'has_waitlist', ts('Offer a Waitlist?'), NULL, ['onclick' => "showHideByValue('has_waitlist','0','id-event_full','table-row','radio',true); showHideByValue('has_waitlist','0','id-waitlist-text','table-row','radio',false);"]);
6a488035
TO
187 $this->add('textarea', 'waitlist_text', ts('Waitlist Message'), $attributes['waitlist_text']);
188 $waitlist = 1;
189 }
190 $this->assign('waitlist', $waitlist);
191
192 $this->add('textarea', 'event_full_text', ts('Message if Event Is Full'), $attributes['event_full_text']);
193
194 $this->addElement('checkbox', 'is_active', ts('Is this Event Active?'));
195
be2fb01f 196 $this->addFormRule(['CRM_Event_Form_ManageEvent_EventInfo', 'formRule']);
6a488035
TO
197
198 parent::buildQuickForm();
199 }
200
201 /**
66f9e52b 202 * Global validation rules for the form.
6a488035 203 *
c490a46a 204 * @param array $values
6a488035 205 *
a6c01b45
CW
206 * @return array
207 * list of errors to be posted back to the form
6a488035 208 */
00be9182 209 public static function formRule($values) {
be2fb01f 210 $errors = [];
6a488035 211
67cc69d7
J
212 if (!empty($values['end_date']) && ($values['end_date'] < $values['start_date'])) {
213 $errors['end_date'] = ts('End date should be after Start date.');
6a488035
TO
214 }
215
216 //CRM-4286
217 if (strstr($values['title'], '/')) {
218 $errors['title'] = ts("Please do not use '/' in Event Title.");
219 }
220
221 return $errors;
222 }
223
224 /**
66f9e52b 225 * Process the form submission.
6a488035
TO
226 */
227 public function postProcess() {
8c605c27 228 $params = array_merge($this->controller->exportValues($this->_name), $this->_submitValues);
6a488035
TO
229
230 //format params
cedee7b0
FW
231 $params['start_date'] = !empty($params['start_date']) ? CRM_Utils_Date::convertTimeZone($params['start_date'], NULL, $params['event_tz'] ?? NULL) : $params['start_date'];
232 $params['end_date'] = !empty($params['end_date']) ? CRM_Utils_Date::convertTimeZone($params['end_date'], NULL, $params['event_tz'] ?? NULL) : $params['end_date'];
6a488035
TO
233 $params['has_waitlist'] = CRM_Utils_Array::value('has_waitlist', $params, FALSE);
234 $params['is_map'] = CRM_Utils_Array::value('is_map', $params, FALSE);
235 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
236 $params['is_public'] = CRM_Utils_Array::value('is_public', $params, FALSE);
237 $params['is_share'] = CRM_Utils_Array::value('is_share', $params, FALSE);
238 $params['default_role_id'] = CRM_Utils_Array::value('default_role_id', $params, FALSE);
239 $params['id'] = $this->_id;
240
6a488035 241 //merge params with defaults from templates
a7488080 242 if (!empty($params['template_id'])) {
6a488035
TO
243 $params = array_merge(CRM_Event_BAO_Event::getTemplateDefaultValues($params['template_id']), $params);
244 }
245
8c605c27
MD
246 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params,
247 $this->_id,
248 'Event'
249 );
250
6a488035 251 // now that we have the event’s id, do some more template-based stuff
a7488080 252 if (!empty($params['template_id'])) {
2e45b2f8 253 $event = CRM_Event_BAO_Event::copy($params['template_id'], $params);
ae70f47e
MWMC
254 }
255 else {
256 $event = CRM_Event_BAO_Event::create($params);
6a488035 257 }
03e04002 258
6a488035
TO
259 $this->set('id', $event->id);
260
c654c119 261 $this->postProcessHook();
262
6a488035
TO
263 if ($this->_action & CRM_Core_Action::ADD) {
264 $url = 'civicrm/event/manage/location';
265 $urlParams = "action=update&reset=1&id={$event->id}";
266 // special case for 'Save and Done' consistency.
267 if ($this->controller->getButtonName('submit') == '_qf_EventInfo_upload_done') {
268 $url = 'civicrm/event/manage';
269 $urlParams = 'reset=1';
270 CRM_Core_Session::setStatus(ts("'%1' information has been saved.",
be2fb01f 271 [1 => $this->getTitle()]
353ffa53 272 ), ts('Saved'), 'success');
6a488035
TO
273 }
274
275 CRM_Utils_System::redirect(CRM_Utils_System::url($url, $urlParams));
276 }
277
278 parent::endPostProcess();
279 }
6a488035
TO
280
281 /**
3bdf1f3a 282 * Return a descriptive name for the page, used in wizard header.
6a488035
TO
283 *
284 * @return string
6a488035
TO
285 */
286 public function getTitle() {
287 return ts('Event Information and Settings');
288 }
289
6a488035 290}