mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
58 lines
2.3 KiB
TypeScript
58 lines
2.3 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { CollectionPageComponent } from './collection-page.component';
|
|
import { CollectionPageRoutingModule } from './collection-page-routing.module';
|
|
import { CreateCollectionPageComponent } from './create-collection-page/create-collection-page.component';
|
|
import { DeleteCollectionPageComponent } from './delete-collection-page/delete-collection-page.component';
|
|
import { EditItemTemplatePageComponent } from './edit-item-template-page/edit-item-template-page.component';
|
|
import { ThemedEditItemTemplatePageComponent } from './edit-item-template-page/themed-edit-item-template-page.component';
|
|
import { EditItemPageModule } from '../item-page/edit-item-page/edit-item-page.module';
|
|
import { CollectionItemMapperComponent } from './collection-item-mapper/collection-item-mapper.component';
|
|
import { SearchService } from '../core/shared/search/search.service';
|
|
import { StatisticsModule } from '../statistics/statistics.module';
|
|
import { CollectionFormModule } from './collection-form/collection-form.module';
|
|
import { ThemedCollectionPageComponent } from './themed-collection-page.component';
|
|
import { ComcolModule } from '../shared/comcol/comcol.module';
|
|
import { DsoSharedModule } from '../dso-shared/dso-shared.module';
|
|
import { DsoPageModule } from '../shared/dso-page/dso-page.module';
|
|
import { BrowseByPageModule } from '../browse-by/browse-by-page.module';
|
|
import { CollectionRecentlyAddedComponent } from './sections/recently-added/collection-recently-added.component';
|
|
|
|
const DECLARATIONS = [
|
|
CollectionPageComponent,
|
|
ThemedCollectionPageComponent,
|
|
CreateCollectionPageComponent,
|
|
DeleteCollectionPageComponent,
|
|
EditItemTemplatePageComponent,
|
|
ThemedEditItemTemplatePageComponent,
|
|
CollectionItemMapperComponent,
|
|
CollectionRecentlyAddedComponent,
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
CollectionPageRoutingModule,
|
|
StatisticsModule.forRoot(),
|
|
EditItemPageModule,
|
|
CollectionFormModule,
|
|
ComcolModule,
|
|
DsoSharedModule,
|
|
DsoPageModule,
|
|
BrowseByPageModule,
|
|
],
|
|
declarations: [
|
|
...DECLARATIONS,
|
|
],
|
|
providers: [
|
|
SearchService,
|
|
],
|
|
})
|
|
export class CollectionPageModule {
|
|
|
|
}
|