Merge pull request #18400 from aydun/class_api_tweak_2
[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;
6a488035
TO
103 return $defaults;
104 }
105
106 /**
66f9e52b 107 * Build the form object.
6a488035
TO
108 */
109 public function buildQuickForm() {
6a488035
TO
110 //need to assign custom data type and subtype to the template
111 $this->assign('customDataType', 'Event');
112 if ($this->_eventType) {
113 $this->assign('customDataSubType', $this->_eventType);
114 }
6a488035
TO
115
116 $this->_first = TRUE;
117 $this->applyFilter('__ALL__', 'trim');
118 $attributes = CRM_Core_DAO::getAttribute('CRM_Event_DAO_Event');
119
120 if ($this->_isTemplate) {
121 $this->add('text', 'template_title', ts('Template Title'), $attributes['template_title'], TRUE);
122 }
123
124 if ($this->_action & CRM_Core_Action::ADD) {
125 $eventTemplates = CRM_Event_PseudoConstant::eventTemplates();
126 if (CRM_Utils_System::isNull($eventTemplates) && !$this->_isTemplate) {
be2fb01f
CW
127 $url = CRM_Utils_System::url('civicrm/admin/eventTemplate', ['reset' => 1]);
128 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
129 }
130 if (!CRM_Utils_System::isNull($eventTemplates)) {
be2fb01f 131 $this->add('select', 'template_id', ts('From Template'), ['' => ts('- select -')] + $eventTemplates, FALSE, ['class' => 'crm-select2 huge']);
6a488035 132 }
bfd83a87
CW
133 // Make sure this form redirects properly
134 $this->preventAjaxSubmit();
6a488035
TO
135 }
136
137 // add event title, make required if this is not a template
138 $this->add('text', 'title', ts('Event Title'), $attributes['event_title'], !$this->_isTemplate);
139
e1462487 140 $this->addSelect('event_type_id',
be2fb01f 141 ['onChange' => "CRM.buildCustomData( 'Event', this.value );"],
e1462487 142 TRUE
6a488035
TO
143 );
144
145 //CRM-7362 --add campaigns.
146 $campaignId = NULL;
147 if ($this->_id) {
148 $campaignId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_id, 'campaign_id');
149 }
150 CRM_Campaign_BAO_Campaign::addCampaign($this, $campaignId);
151
be2fb01f 152 $this->addSelect('default_role_id', [], TRUE);
6a488035 153
be2fb01f 154 $this->addSelect('participant_listing_id', ['placeholder' => ts('Disabled'), 'option_url' => NULL]);
6a488035
TO
155
156 $this->add('textarea', 'summary', ts('Event Summary'), $attributes['summary']);
be2fb01f 157 $this->add('wysiwyg', 'description', ts('Complete Description'), $attributes['event_description'] + ['preset' => 'civievent']);
0781df9b 158 $this->addElement('checkbox', 'is_public', ts('Public Event'));
77b95c29 159 $this->addElement('checkbox', 'is_share', ts('Add footer region with Twitter, Facebook and LinkedIn share buttons and scripts?'));
0781df9b 160 $this->addElement('checkbox', 'is_map', ts('Include Map to Event Location'));
6a488035 161
67cc69d7 162 $this->add('datepicker', 'start_date', ts('Start'), [], !$this->_isTemplate, ['time' => TRUE]);
8b827219 163 $this->add('datepicker', 'end_date', ts('End'), [], FALSE, ['time' => TRUE]);
6a488035 164
d70ada2a 165 $this->add('number', 'max_participants', ts('Max Number of Participants'),
be2fb01f 166 ['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
167 );
168 $this->addRule('max_participants', ts('Max participants should be a positive number'), 'positiveInteger');
169
170 $participantStatuses = CRM_Event_PseudoConstant::participantStatus();
171 $waitlist = 0;
172 if (in_array('On waitlist', $participantStatuses) and in_array('Pending from waitlist', $participantStatuses)) {
be2fb01f 173 $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
174 $this->add('textarea', 'waitlist_text', ts('Waitlist Message'), $attributes['waitlist_text']);
175 $waitlist = 1;
176 }
177 $this->assign('waitlist', $waitlist);
178
179 $this->add('textarea', 'event_full_text', ts('Message if Event Is Full'), $attributes['event_full_text']);
180
181 $this->addElement('checkbox', 'is_active', ts('Is this Event Active?'));
182
be2fb01f 183 $this->addFormRule(['CRM_Event_Form_ManageEvent_EventInfo', 'formRule']);
6a488035
TO
184
185 parent::buildQuickForm();
186 }
187
188 /**
66f9e52b 189 * Global validation rules for the form.
6a488035 190 *
c490a46a 191 * @param array $values
6a488035 192 *
a6c01b45
CW
193 * @return array
194 * list of errors to be posted back to the form
6a488035 195 */
00be9182 196 public static function formRule($values) {
be2fb01f 197 $errors = [];
6a488035 198
67cc69d7
J
199 if (!empty($values['end_date']) && ($values['end_date'] < $values['start_date'])) {
200 $errors['end_date'] = ts('End date should be after Start date.');
6a488035
TO
201 }
202
203 //CRM-4286
204 if (strstr($values['title'], '/')) {
205 $errors['title'] = ts("Please do not use '/' in Event Title.");
206 }
207
208 return $errors;
209 }
210
211 /**
66f9e52b 212 * Process the form submission.
6a488035
TO
213 */
214 public function postProcess() {
8c605c27 215 $params = array_merge($this->controller->exportValues($this->_name), $this->_submitValues);
6a488035
TO
216
217 //format params
9c1bc317
CW
218 $params['start_date'] = $params['start_date'] ?? NULL;
219 $params['end_date'] = $params['end_date'] ?? NULL;
6a488035
TO
220 $params['has_waitlist'] = CRM_Utils_Array::value('has_waitlist', $params, FALSE);
221 $params['is_map'] = CRM_Utils_Array::value('is_map', $params, FALSE);
222 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
223 $params['is_public'] = CRM_Utils_Array::value('is_public', $params, FALSE);
224 $params['is_share'] = CRM_Utils_Array::value('is_share', $params, FALSE);
225 $params['default_role_id'] = CRM_Utils_Array::value('default_role_id', $params, FALSE);
226 $params['id'] = $this->_id;
227
6a488035 228 //merge params with defaults from templates
a7488080 229 if (!empty($params['template_id'])) {
6a488035 230 $params = array_merge(CRM_Event_BAO_Event::getTemplateDefaultValues($params['template_id']), $params);
8c605c27
MD
231 foreach ($params as $key => $value) {
232 $customFieldInfo = CRM_Core_BAO_CustomField::getKeyID($key, TRUE);
233 if (!empty($customFieldInfo[1])) {
234 $params[str_replace($customFieldInfo[1], '-' . $customFieldInfo[1], $key)] = $value;
235 unset($params[$key]);
236 }
237 }
6a488035
TO
238 }
239
8c605c27
MD
240 $params['custom'] = CRM_Core_BAO_CustomField::postProcess($params,
241 $this->_id,
242 'Event'
243 );
244
6a488035 245 // now that we have the event’s id, do some more template-based stuff
a7488080 246 if (!empty($params['template_id'])) {
2e45b2f8 247 $event = CRM_Event_BAO_Event::copy($params['template_id'], $params);
ae70f47e
MWMC
248 }
249 else {
250 $event = CRM_Event_BAO_Event::create($params);
6a488035 251 }
03e04002 252
6a488035
TO
253 $this->set('id', $event->id);
254
c654c119 255 $this->postProcessHook();
256
6a488035
TO
257 if ($this->_action & CRM_Core_Action::ADD) {
258 $url = 'civicrm/event/manage/location';
259 $urlParams = "action=update&reset=1&id={$event->id}";
260 // special case for 'Save and Done' consistency.
261 if ($this->controller->getButtonName('submit') == '_qf_EventInfo_upload_done') {
262 $url = 'civicrm/event/manage';
263 $urlParams = 'reset=1';
264 CRM_Core_Session::setStatus(ts("'%1' information has been saved.",
be2fb01f 265 [1 => $this->getTitle()]
353ffa53 266 ), ts('Saved'), 'success');
6a488035
TO
267 }
268
269 CRM_Utils_System::redirect(CRM_Utils_System::url($url, $urlParams));
270 }
271
272 parent::endPostProcess();
273 }
6a488035
TO
274
275 /**
3bdf1f3a 276 * Return a descriptive name for the page, used in wizard header.
6a488035
TO
277 *
278 * @return string
6a488035
TO
279 */
280 public function getTitle() {
281 return ts('Event Information and Settings');
282 }
283
6a488035 284}