ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilSkillExportConfig.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 const MODE_SKILLS = "";
16 const MODE_PROFILES = "prof";
17 protected $selected_nodes = false;
18 protected $selected_profiles = false;
19 protected $mode = "";
20
26 function setMode($a_val)
27 {
28 $this->mode = $a_val;
29 }
30
36 function getMode()
37 {
38 return $this->mode;
39 }
40
46 function setSelectedNodes($a_val)
47 {
48 $this->selected_nodes = $a_val;
49 }
50
57 {
59 }
60
66 function setSelectedProfiles($a_val)
67 {
68 $this->selected_profiles = $a_val;
69 }
70
77 {
79 }
80}
81
82?>
An exception for terminatinating execution or to throw for unit testing.
Export configuration class parent class.
Export configuration for skills.
setSelectedNodes($a_val)
Set export selected nodes.
getSelectedProfiles()
Get selected profiles.
getSelectedNodes()
Get export selected nodes.
setSelectedProfiles($a_val)
Set selected profiles.