ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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
22 function setMasterLanguageOnly($a_val)
23 {
24 $this->master_only = $a_val;
25 }
26
33 {
34 return $this->master_only;
35 }
36}
37
38?>
An exception for terminatinating execution or to throw for unit testing.
Export configuration for pages.
setMasterLanguageOnly($a_val)
Set master language only.
getMasterLanguageOnly()
Get master language only.
Export configuration class parent class.