Initial commit of InstallWizardController

This commit is contained in:
Duncan Sommerville 2014-11-04 11:07:56 -05:00
parent e8950c8815
commit 298d8630f3
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<?php
class InstallWizardController extends Zend_Controller_Action {
public function init() {
$this->view->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender(true);
}
public function runAirtimeConfigurationAction() {
}
}