Merge pull request #13676 from civicrm/5.11
[civicrm-core.git] / CRM / Event / Form / ManageEvent / Conference.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33
34 /**
35 * This class generates form components for Conference Slots.
36 */
37 class CRM_Event_Form_ManageEvent_Conference extends CRM_Event_Form_ManageEvent {
38
39 /**
40 * Page action.
41 */
42 public $_action;
43
44 /**
45 * Build quick form.
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(
54 '' => ts('- select -'),
55 ) + $slots,
56 FALSE
57 );
58
59 $this->addEntityRef('parent_event_id', ts('Parent Event'), array(
60 'entity' => 'Event',
61 'placeholder' => ts('- any -'),
62 'select' => array('minimumInputLength' => 0),
63 )
64 );
65
66 parent::buildQuickForm();
67 }
68
69 /**
70 * Post process form.
71 */
72 public function postProcess() {
73 $params = $this->exportValues();
74
75 $params['id'] = $this->_id;
76 CRM_Event_BAO_Event::add($params);
77
78 parent::endPostProcess();
79 }
80
81 /**
82 * Return a descriptive name for the page, used in wizard header.
83 *
84 * @return string
85 */
86 public function getTitle() {
87 return ts('Conference Slots');
88 }
89
90 }