ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
class.ilMediaPoolExportConfig.php
Go to the documentation of this file.
1 <?php
2 
20 
26 class ilMediaPoolExportConfig extends ExportConfig
27 {
28  protected bool $master_only = false;
29  protected bool $include_media = true;
30 
35  public function setMasterLanguageOnly(
36  bool $a_val,
37  bool $a_include_media = true
38  ): void {
39  $this->master_only = $a_val;
40  $this->include_media = $a_include_media;
41  }
42 
43  public function getMasterLanguageOnly(): bool
44  {
45  return $this->master_only;
46  }
47 
48  public function getIncludeMedia(): bool
49  {
50  return $this->include_media;
51  }
52 }
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)