2017-09-22 12:26:08 +02:00
|
|
|
/**
|
|
|
|
* Created by stefania on 9/16/16.
|
|
|
|
*/
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
import { HttpModule, JsonpModule } from '@angular/http';
|
|
|
|
import { AppComponent } from "./app.component";
|
|
|
|
import { routing, appRoutingProviders } from "./app.routing";
|
|
|
|
import { DashboardComponent } from "./dashboard.component";
|
|
|
|
import { TopicsComponent } from "./pages/faq/topics.components";
|
|
|
|
import { QuestionsComponent } from "./pages/faq/questions.component";
|
|
|
|
import { FAQService } from "./services/faq.service";
|
|
|
|
import { ModalModule } from 'ngx-bootstrap';
|
2018-01-04 16:56:22 +01:00
|
|
|
//import { CollapseModule } from 'ngx-bootstrap';
|
|
|
|
//import { AccordionModule } from 'ngx-bootstrap';
|
2017-09-22 12:26:08 +02:00
|
|
|
import { TopicsFormComponent } from "./pages/faq/topics-form.component";
|
|
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { ModalFormComponent } from "./pages/modal-form.component";
|
|
|
|
import { QuestionsFormComponent } from "./pages/faq/questions-form.component";
|
|
|
|
import { DeleteConfirmationDialogComponent } from "./pages/delete-confirmation-dialog.component";
|
2018-01-11 16:21:58 +01:00
|
|
|
// import { JWBootstrapSwitchModule } from 'jw-bootstrap-switch-ng2';
|
2017-09-22 12:26:08 +02:00
|
|
|
import { PagesComponent } from "./pages/helpcontent/pages.component";
|
|
|
|
import { HelpContentService } from "./services/help-content.service";
|
|
|
|
import { PageFormComponent } from "./pages/helpcontent/page-form.component";
|
|
|
|
import { PageHelpContentsComponent } from "./pages/helpcontent/page-help-contents.component";
|
|
|
|
import { NewPageHelpContentComponent } from "./pages/helpcontent/new-page-help-content.component";
|
|
|
|
import { CKEditorModule } from 'ng2-ckeditor';
|
|
|
|
import { PageContentFormComponent } from "./pages/helpcontent/page-help-content-form.component";
|
|
|
|
import { EditPageHelpContentComponent } from "./pages/helpcontent/edit-page-help-content.component";
|
2017-12-20 15:26:30 +01:00
|
|
|
import { CommunitiesComponent } from './pages/community/communities.component';
|
|
|
|
import { CommunityFormComponent } from './pages/community/community-form.component';
|
2018-01-04 15:32:31 +01:00
|
|
|
import { CommunityEditFormComponent } from './pages/community/community-edit-form.component';
|
2017-12-20 15:26:30 +01:00
|
|
|
import { EntitiesComponent } from "./pages/helpcontent/entities.component";
|
2017-12-13 12:15:19 +01:00
|
|
|
import { EntityFormComponent } from "./pages/helpcontent/entity-form.component";
|
2018-02-06 12:06:43 +01:00
|
|
|
import { DivIdsComponent } from "./pages/divId/divIds.component";
|
|
|
|
import { DivIdFormComponent } from "./pages/divId/divId-form.component";
|
|
|
|
import { DivHelpContentsComponent } from "./pages/divhelpcontent/div-help-contents.component";
|
|
|
|
import { NewDivHelpContentComponent } from "./pages/divhelpcontent/new-div-help-content.component";
|
|
|
|
import { DivContentFormComponent } from "./pages/divhelpcontent/div-help-content-form.component";
|
|
|
|
import { EditDivHelpContentComponent } from "./pages/divhelpcontent/edit-div-help-content.component";
|
2018-01-11 16:21:58 +01:00
|
|
|
import {BottomModule, FeedbackModule, NavigationBarModule, CookieLawModule} from 'ng-openaire-library';
|
2018-02-06 12:06:43 +01:00
|
|
|
|
2018-01-11 16:21:58 +01:00
|
|
|
//, , ErrorModule CookieLawModule
|
2017-09-22 12:26:08 +02:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
BrowserModule,
|
|
|
|
routing,
|
|
|
|
HttpModule,
|
|
|
|
JsonpModule,
|
|
|
|
ModalModule.forRoot(),
|
2018-01-04 16:56:22 +01:00
|
|
|
//CollapseModule.forRoot(),
|
|
|
|
//AccordionModule.forRoot(),
|
2017-09-22 12:26:08 +02:00
|
|
|
FormsModule,
|
|
|
|
ReactiveFormsModule,
|
2018-01-11 16:21:58 +01:00
|
|
|
// JWBootstrapSwitchModule,
|
|
|
|
CKEditorModule,
|
|
|
|
BottomModule, FeedbackModule, NavigationBarModule, CookieLawModule
|
|
|
|
// , CookieLawModule, ErrorModule
|
2017-09-22 12:26:08 +02:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
|
|
|
DashboardComponent,
|
|
|
|
TopicsComponent,
|
|
|
|
QuestionsComponent,
|
|
|
|
TopicsFormComponent,
|
|
|
|
ModalFormComponent,
|
|
|
|
QuestionsFormComponent,
|
|
|
|
DeleteConfirmationDialogComponent,
|
|
|
|
PagesComponent,
|
|
|
|
PageFormComponent,
|
|
|
|
PageHelpContentsComponent,
|
|
|
|
NewPageHelpContentComponent,
|
|
|
|
PageContentFormComponent,
|
2017-12-13 12:15:19 +01:00
|
|
|
EditPageHelpContentComponent,
|
2017-12-20 15:26:30 +01:00
|
|
|
CommunitiesComponent,
|
|
|
|
CommunityFormComponent,
|
2018-01-04 15:32:31 +01:00
|
|
|
CommunityEditFormComponent,
|
2017-12-20 15:26:30 +01:00
|
|
|
EntitiesComponent,
|
2018-02-06 12:06:43 +01:00
|
|
|
EntityFormComponent,
|
|
|
|
DivIdsComponent,
|
|
|
|
DivIdFormComponent,
|
|
|
|
DivHelpContentsComponent,
|
|
|
|
NewDivHelpContentComponent,
|
|
|
|
EditDivHelpContentComponent,
|
|
|
|
DivContentFormComponent
|
2017-09-22 12:26:08 +02:00
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
FAQService,
|
|
|
|
HelpContentService,
|
|
|
|
appRoutingProviders
|
|
|
|
],
|
|
|
|
bootstrap: [ AppComponent ]
|
|
|
|
})
|
|
|
|
|
2017-12-13 12:15:19 +01:00
|
|
|
export class AppModule { }
|