Merge pull request #18712 from eileenmcnaughton/locev3
[civicrm-core.git] / CRM / Event / Form / Task / ParticipantStatus.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/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
6a488035
TO
16 */
17class CRM_Event_Form_Task_ParticipantStatus extends CRM_Event_Form_Task_Batch {
90b461f1 18
00be9182 19 public function buildQuickForm() {
6a488035
TO
20 // CRM_Event_Form_Task_Batch::buildQuickForm() gets ufGroupId
21 // from the form, so set it here to the id of the reserved profile
7c550ca0 22 $dao = new CRM_Core_DAO_UFGroup();
6a488035
TO
23 $dao->name = 'participant_status';
24 $dao->find(TRUE);
25 $this->set('ufGroupId', $dao->id);
26
27 $statuses = CRM_Event_PseudoConstant::participantStatus(NULL, NULL, 'label');
28 asort($statuses, SORT_STRING);
29 $this->add('select', 'status_change', ts('Change All Statuses'),
be2fb01f 30 [
7c550ca0 31 '' => ts('- select status -'),
be2fb01f 32 ] + $statuses
6a488035
TO
33 );
34
3ea7ca33 35 $this->assign('context', 'statusChange');
041ecc95 36 // CRM-4321: display info on users being notified if any of the below statuses is enabled
3ea7ca33 37 parent::assignToTemplate();
6a488035
TO
38 parent::buildQuickForm();
39 }
96025800 40
6a488035 41}