[NFC] Remove some more of the old cvs blocks
[civicrm-core.git] / CRM / Event / Controller / Registration.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 * Class CRM_Event_Controller_Registration
14 */
15 class CRM_Event_Controller_Registration extends CRM_Core_Controller {
16
17 /**
18 * Class constructor.
19 *
20 * @param null $title
21 * @param bool|int $action
22 * @param bool $modal
23 */
24 public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
25 parent::__construct($title, $modal);
26
27 $this->_stateMachine = new CRM_Event_StateMachine_Registration($this, $action);
28
29 // create and instantiate the pages
30 $this->addPages($this->_stateMachine, $action);
31
32 $config = CRM_Core_Config::singleton();
33
34 //changes for custom data type File
35 $uploadNames = $this->get('uploadNames');
36 if (is_array($uploadNames) && !empty($uploadNames)) {
37 $this->addActions($config->customFileUploadDir, $uploadNames);
38 }
39 else {
40 // add all the actions
41 $this->addActions();
42 }
43 }
44
45 public function invalidKey() {
46 $this->invalidKeyRedirect();
47 }
48
49 }