ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilLearningModuleExportConfig.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 include_once("./Services/Export/classes/class.ilExportConfig.php");
14 {
15  protected $master_only = false;
16  protected $include_media = true;
17 
23  public function setMasterLanguageOnly($a_val, $a_include_media = true)
24  {
25  $this->master_only = $a_val;
26  $this->include_media = $a_include_media;
27  }
28 
34  public function getMasterLanguageOnly()
35  {
36  return $this->master_only;
37  }
38 
44  public function getIncludeMedia()
45  {
46  return $this->include_media;
47  }
48 }
getMasterLanguageOnly()
Get master language only.
setMasterLanguageOnly($a_val, $a_include_media=true)
Set master language only.
Export configuration class parent class.
Export configuration for learning modules.