2020-10-05 12:56:27 +00:00
|
|
|
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-10-06 08:48:26 +00:00
|
|
|
import { NgModule, Injector } from '@angular/core';
|
2020-10-05 12:56:27 +00:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { RouteReuseStrategy } from '@angular/router';
|
|
|
|
|
|
|
|
import { IonicModule, IonicRouteStrategy } from '@ionic/angular';
|
|
|
|
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
|
2020-10-06 08:48:26 +00:00
|
|
|
import { CoreAppProvider } from '@services/app';
|
|
|
|
import { CoreInitDelegate } from '@services/init';
|
|
|
|
import { CoreUtilsProvider } from '@services/utils/utils';
|
|
|
|
|
|
|
|
import { CoreEmulatorModule } from '@core/emulator/emulator.module';
|
|
|
|
import { CoreLoginModule } from '@core/login/login.module';
|
|
|
|
|
|
|
|
import { setSingletonsInjector } from '@singletons/core.singletons';
|
|
|
|
|
2020-10-05 12:56:27 +00:00
|
|
|
@NgModule({
|
|
|
|
declarations: [AppComponent],
|
|
|
|
entryComponents: [],
|
2020-10-06 08:48:26 +00:00
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
IonicModule.forRoot(),
|
|
|
|
AppRoutingModule,
|
|
|
|
CoreEmulatorModule,
|
|
|
|
CoreLoginModule,
|
|
|
|
],
|
2020-10-05 12:56:27 +00:00
|
|
|
providers: [
|
2020-10-06 08:48:26 +00:00
|
|
|
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy },
|
|
|
|
CoreAppProvider,
|
|
|
|
CoreInitDelegate,
|
|
|
|
CoreUtilsProvider,
|
2020-10-05 12:56:27 +00:00
|
|
|
],
|
|
|
|
bootstrap: [AppComponent],
|
|
|
|
})
|
2020-10-06 08:48:26 +00:00
|
|
|
export class AppModule {
|
|
|
|
constructor(injector: Injector,
|
|
|
|
initDelegate: CoreInitDelegate,
|
|
|
|
) {
|
|
|
|
|
|
|
|
// Set the injector.
|
|
|
|
setSingletonsInjector(injector);
|
|
|
|
|
|
|
|
// Execute the init processes.
|
|
|
|
initDelegate.executeInitProcesses();
|
|
|
|
}
|
|
|
|
}
|