(NFC) Update CRM/Core CRM/Custom CRM/Dedupe to match the new coder style
[civicrm-core.git] / CRM / Custom / Import / Controller.php
1 <?php
2
3 /**
4 * Class CRM_Custom_Import_Controller
5 */
6 class CRM_Custom_Import_Controller extends CRM_Core_Controller {
7
8 /**
9 * Class constructor.
10 *
11 * @param string $title
12 * @param bool|int $action
13 * @param bool $modal
14 */
15 public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
16 parent::__construct($title, $modal);
17
18 // lets get around the time limit issue if possible, CRM-2113
19 if (!ini_get('safe_mode')) {
20 set_time_limit(0);
21 }
22
23 $this->_stateMachine = new CRM_Import_StateMachine($this, $action);
24
25 // create and instantiate the pages
26 $this->addPages($this->_stateMachine, $action);
27
28 // add all the actions
29 $config = CRM_Core_Config::singleton();
30 $this->addActions($config->uploadDir, ['uploadFile']);
31 }
32
33 }