ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMediaPoolExportConfig.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected bool $master_only = false;
27  protected bool $include_media = true;
28 
33  public function setMasterLanguageOnly(
34  bool $a_val,
35  bool $a_include_media = true
36  ): void {
37  $this->master_only = $a_val;
38  $this->include_media = $a_include_media;
39  }
40 
41  public function getMasterLanguageOnly(): bool
42  {
43  return $this->master_only;
44  }
45 
46  public function getIncludeMedia(): bool
47  {
48  return $this->include_media;
49  }
50 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)