Merge pull request #17748 from demeritcowboy/double-vision
[civicrm-core.git] / CRM / Upgrade / Controller.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 * $Id$
17 *
18 */
19class CRM_Upgrade_Controller extends CRM_Core_Controller {
20
21 /**
fe482240 22 * Class constructor.
ab432335
EM
23 *
24 * @param null $title
25 * @param bool|int $action
26 * @param bool $modal
6a488035 27 */
79d7553f 28 public function __construct(
4e66d748 29 $title = NULL,
6a488035
TO
30 $action = CRM_Core_Action::NONE,
31 $modal = TRUE
32 ) {
33 parent::__construct($title, $modal);
34
35 $this->_stateMachine = new CRM_Upgrade_StateMachine($this,
36 $this->getPages(),
37 $action
38 );
39
40 // create and instantiate the pages
41 $this->addPages($this->_stateMachine, $action);
42
43 // add all the actions
44 $config = CRM_Core_Config::singleton();
45 $this->addActions();
46 }
96025800 47
6a488035 48}