wip from ATB
This commit is contained in:
@ -156,7 +156,7 @@ class Install extends Controller {
|
||||
if ( Input::exists( 'submit' ) ) {
|
||||
Issues::add( 'error', ['There was an error with the Installation.' => Check::userErrors()] );
|
||||
}
|
||||
Views::view( 'install.start' );
|
||||
Views::view( 'install.welcome' );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -171,7 +171,7 @@ class Install extends Controller {
|
||||
Issues::add( 'error', [ 'There was an error with the Installation.' => Check::userErrors() ] );
|
||||
}
|
||||
Components::set( 'TERMS', Views::simpleView( 'terms' ) );
|
||||
Views::view( 'install.agreement' );
|
||||
Views::view( 'install.terms' );
|
||||
}
|
||||
|
||||
/**
|
||||
@ -185,10 +185,9 @@ class Install extends Controller {
|
||||
if ( Input::exists( 'submit' ) ) {
|
||||
Issues::add( 'error', ['There was an error with the Installation.' => array_merge( Check::userErrors(), Check::systemErrors() )] );
|
||||
}
|
||||
Views::view( 'install.check' );
|
||||
Views::view( 'install.verify' );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* One of the most important steps for installation, is the configuration. In this step, we will define some very core settings
|
||||
* for the app including the app's name and database credentials.
|
||||
@ -381,7 +380,7 @@ class Install extends Controller {
|
||||
} elseif ( Input::exists( 'submit' ) ) {
|
||||
Issues::add( 'error', ['There was an error with your form.' => Check::userErrors()] );
|
||||
}
|
||||
Views::view( 'install.adminUser' );
|
||||
Views::view( 'install.user' );
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user