ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilMediaPoolExportConfig.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2015 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 
24  public function setMasterLanguageOnly($a_val, $a_include_media = true)
25  {
26  $this->master_only = $a_val;
27  $this->include_media = $a_include_media;
28  }
29 
35  public function getMasterLanguageOnly()
36  {
37  return $this->master_only;
38  }
39 
45  public function getIncludeMedia()
46  {
47  return $this->include_media;
48  }
49 }
setMasterLanguageOnly($a_val, $a_include_media=true)
Set master language only.
Export configuration class parent class.
Export configuration for media pools.
getMasterLanguageOnly()
Get master language only.