ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilLearningModuleExportConfig.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4
13{
14 protected $master_only = false;
15 protected $include_media = true;
16
22 public function setMasterLanguageOnly($a_val, $a_include_media = true)
23 {
24 $this->master_only = $a_val;
25 $this->include_media = $a_include_media;
26 }
27
33 public function getMasterLanguageOnly()
34 {
35 return $this->master_only;
36 }
37
43 public function getIncludeMedia()
44 {
46 }
47}
An exception for terminatinating execution or to throw for unit testing.
Export configuration class parent class.
Export configuration for learning modules.
setMasterLanguageOnly($a_val, $a_include_media=true)
Set master language only.