ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilLearningModuleExportConfig.php
Go to the documentation of this file.
1<?php
2
20
26class ilLearningModuleExportConfig extends ExportConfig
27{
28 protected bool $master_only = false;
29 protected bool $include_media = true;
30
31 public function setMasterLanguageOnly(
32 bool $a_val,
33 bool $a_include_media = true
34 ): void {
35 $this->master_only = $a_val;
36 $this->include_media = $a_include_media;
37 }
38
39 public function getMasterLanguageOnly(): bool
40 {
41 return $this->master_only;
42 }
43
44 public function getIncludeMedia(): bool
45 {
46 return $this->include_media;
47 }
48}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setMasterLanguageOnly(bool $a_val, bool $a_include_media=true)