Merge pull request #13314 from colemanw/dev/core#337
[civicrm-core.git] / CRM / Event / Form / ManageEvent / Conference.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
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. |
13 | |
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. |
18 | |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33
34/**
3bdf1f3a 35 * This class generates form components for Conference Slots.
6a488035
TO
36 */
37class CRM_Event_Form_ManageEvent_Conference extends CRM_Event_Form_ManageEvent {
38
39 /**
66f9e52b 40 * Page action.
6a488035
TO
41 */
42 public $_action;
43
44 /**
3bdf1f3a 45 * Build quick form.
6a488035
TO
46 */
47 public function buildQuickForm() {
48 $slots = CRM_Core_OptionGroup::values('conference_slot');
49
50 $this->add('select',
51 'slot_label_id',
52 ts('Conference Slot'),
53 array(
28a04ea9 54 '' => ts('- select -'),
353ffa53 55 ) + $slots,
6a488035
TO
56 FALSE
57 );
58
0479b4c8 59 $this->addEntityRef('parent_event_id', ts('Parent Event'), array(
9c7c6a00
CW
60 'entity' => 'event',
61 'placeholder' => ts('- any -'),
62 'select' => array('minimumInputLength' => 0),
63 )
64 );
6a488035
TO
65
66 parent::buildQuickForm();
67 }
68
3bdf1f3a 69 /**
70 * Post process form.
71 */
6a488035 72 public function postProcess() {
6a488035
TO
73 $params = $this->exportValues();
74
6a488035
TO
75 $params['id'] = $this->_id;
76 CRM_Event_BAO_Event::add($params);
77
78 parent::endPostProcess();
79 }
80
81 /**
3bdf1f3a 82 * Return a descriptive name for the page, used in wizard header.
6a488035
TO
83 *
84 * @return string
6a488035
TO
85 */
86 public function getTitle() {
87 return ts('Conference Slots');
88 }
96025800 89
6a488035 90}