ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilCOPageExportConfig.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
5include_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 {
47 }
48}
An exception for terminatinating execution or to throw for unit testing.
Export configuration for pages.
setMasterLanguageOnly($a_val, $a_include_media=true)
Set master language only.
getMasterLanguageOnly()
Get master language only.
getIncludeMedia()
Get include media.
Export configuration class parent class.