ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 public function setMode($a_val)
27 {
28 $this->mode = $a_val;
29 }
30
36 public function getMode()
37 {
38 return $this->mode;
39 }
40
46 public function setSelectedNodes($a_val)
47 {
48 $this->selected_nodes = $a_val;
49 }
50
56 public function getSelectedNodes()
57 {
59 }
60
66 public function setSelectedProfiles($a_val)
67 {
68 $this->selected_profiles = $a_val;
69 }
70
76 public function getSelectedProfiles()
77 {
79 }
80}
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.