ILIAS  release_8 Revision v8.24
class.ilCOPageExportConfig.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
29 public function setMasterLanguageOnly(
30 bool $a_val,
31 bool $a_include_media = true
32 ): void {
33 $this->master_only = $a_val;
34 $this->include_media = $a_include_media;
35 }
36
37 public function getMasterLanguageOnly(): bool
38 {
39 return $this->master_only;
40 }
41
42 public function getIncludeMedia(): bool
43 {
44 return $this->include_media;
45 }
46}
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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...