2021-01-14 10:26:41 +01: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.
|
|
|
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
|
|
import { CoreSharedModule } from '@/core/shared.module';
|
|
|
|
import { CoreBlockComponentsModule } from '@features/block/components/components.module';
|
2021-01-18 15:19:30 +01:00
|
|
|
import { CoreCourseFormatComponent } from './format/format';
|
|
|
|
import { CoreCourseModuleComponent } from './module/module';
|
|
|
|
import { CoreCourseModuleCompletionComponent } from './module-completion/module-completion';
|
2021-01-14 10:26:41 +01:00
|
|
|
import { CoreCourseModuleDescriptionComponent } from './module-description/module-description';
|
2021-01-18 16:16:18 +01:00
|
|
|
import { CoreCourseSectionSelectorComponent } from './section-selector/section-selector';
|
2021-01-25 09:39:33 +01:00
|
|
|
import { CoreCourseTagAreaComponent } from './tag-area/tag-area';
|
2021-01-14 10:26:41 +01:00
|
|
|
import { CoreCourseUnsupportedModuleComponent } from './unsupported-module/unsupported-module';
|
2021-05-06 12:35:32 +02:00
|
|
|
import { CoreCourseModuleCompletionLegacyComponent } from './module-completion-legacy/module-completion-legacy';
|
2021-05-07 10:09:31 +02:00
|
|
|
import { CoreCourseModuleInfoComponent } from './module-info/module-info';
|
|
|
|
import { CoreCourseModuleManualCompletionComponent } from './module-manual-completion/module-manual-completion';
|
2021-12-03 13:45:23 +01:00
|
|
|
import { CoreCourseModuleNavigationComponent } from './module-navigation/module-navigation';
|
2021-01-14 10:26:41 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
2021-01-18 15:19:30 +01:00
|
|
|
CoreCourseFormatComponent,
|
|
|
|
CoreCourseModuleComponent,
|
|
|
|
CoreCourseModuleCompletionComponent,
|
2021-05-06 12:35:32 +02:00
|
|
|
CoreCourseModuleCompletionLegacyComponent,
|
2021-01-14 10:26:41 +01:00
|
|
|
CoreCourseModuleDescriptionComponent,
|
2021-05-07 10:09:31 +02:00
|
|
|
CoreCourseModuleInfoComponent,
|
|
|
|
CoreCourseModuleManualCompletionComponent,
|
2021-01-18 16:16:18 +01:00
|
|
|
CoreCourseSectionSelectorComponent,
|
2021-01-25 09:39:33 +01:00
|
|
|
CoreCourseTagAreaComponent,
|
2021-01-14 10:26:41 +01:00
|
|
|
CoreCourseUnsupportedModuleComponent,
|
2021-12-03 13:45:23 +01:00
|
|
|
CoreCourseModuleNavigationComponent,
|
2021-01-14 10:26:41 +01:00
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
CoreBlockComponentsModule,
|
|
|
|
CoreSharedModule,
|
|
|
|
],
|
|
|
|
exports: [
|
2021-01-18 15:19:30 +01:00
|
|
|
CoreCourseFormatComponent,
|
|
|
|
CoreCourseModuleComponent,
|
|
|
|
CoreCourseModuleCompletionComponent,
|
2021-05-06 12:35:32 +02:00
|
|
|
CoreCourseModuleCompletionLegacyComponent,
|
2021-01-14 10:26:41 +01:00
|
|
|
CoreCourseModuleDescriptionComponent,
|
2021-05-07 10:09:31 +02:00
|
|
|
CoreCourseModuleInfoComponent,
|
|
|
|
CoreCourseModuleManualCompletionComponent,
|
2021-01-18 16:16:18 +01:00
|
|
|
CoreCourseSectionSelectorComponent,
|
2021-01-25 09:39:33 +01:00
|
|
|
CoreCourseTagAreaComponent,
|
2021-01-14 10:26:41 +01:00
|
|
|
CoreCourseUnsupportedModuleComponent,
|
2021-12-03 13:45:23 +01:00
|
|
|
CoreCourseModuleNavigationComponent,
|
2021-01-14 10:26:41 +01:00
|
|
|
],
|
|
|
|
})
|
|
|
|
export class CoreCourseComponentsModule {}
|