Merge pull request #15338 from totten/master-poc-postcommit
[civicrm-core.git] / CRM / Event / Form / Task / ParticipantStatus.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
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 |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 * $Id$
17 *
18 */
19 class CRM_Event_Form_Task_ParticipantStatus extends CRM_Event_Form_Task_Batch {
20
21 public function buildQuickForm() {
22 // CRM_Event_Form_Task_Batch::buildQuickForm() gets ufGroupId
23 // from the form, so set it here to the id of the reserved profile
24 $dao = new CRM_Core_DAO_UFGroup();
25 $dao->name = 'participant_status';
26 $dao->find(TRUE);
27 $this->set('ufGroupId', $dao->id);
28
29 $statuses = CRM_Event_PseudoConstant::participantStatus(NULL, NULL, 'label');
30 asort($statuses, SORT_STRING);
31 $this->add('select', 'status_change', ts('Change All Statuses'),
32 [
33 '' => ts('- select status -'),
34 ] + $statuses
35 );
36
37 $this->assign('context', 'statusChange');
38 // CRM-4321: display info on users being notified if any of the below statuses is enabled
39 parent::assignToTemplate();
40 parent::buildQuickForm();
41 }
42
43 }