Blame view

libraries/nextend2/nextend/library/applications/system/backend/controllers/Install.php 373 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php


class N2SystemBackendInstallController extends N2BackendController
{

    public function initialize() {

    }
    
    public function actionIndex($secured = false) {
        if ($secured) {
            N2Loader::import('models.Install', 'system');

            $installModel = new N2SystemInstallModel();

            $installModel->install();
        }
    }
}