ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilSkillExportConfig.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2020 ILIAS open source, Extended GPL, see docs/LICENSE */
4
5
12{
13 const MODE_SKILLS = "";
14 const MODE_PROFILES = "prof";
15 protected $selected_nodes = false;
16 protected $selected_profiles = false;
17 protected $mode = "";
18
24 public function setMode($a_val)
25 {
26 $this->mode = $a_val;
27 }
28
34 public function getMode()
35 {
36 return $this->mode;
37 }
38
44 public function setSelectedNodes($a_val)
45 {
46 $this->selected_nodes = $a_val;
47 }
48
54 public function getSelectedNodes()
55 {
57 }
58
64 public function setSelectedProfiles($a_val)
65 {
66 $this->selected_profiles = $a_val;
67 }
68
74 public function getSelectedProfiles()
75 {
77 }
78}
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.