ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilSkillManagementSettings.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
4
13{
17 public function __construct()
18 {
19 parent::__construct("skmg");
20 }
21
28 public function activate($a_active)
29 {
30 $this->set("enable_skmg", (int) $a_active);
31 }
32
33
37 public function isActivated()
38 {
39 return $this->get("enable_skmg");
40 }
41
47 public function setHideProfileBeforeSelfEval($a_val)
48 {
49 $this->set("hide_profile_self_eval", (int) $a_val);
50 }
51
58 {
59 return $this->get("hide_profile_self_eval");
60 }
61}
An exception for terminatinating execution or to throw for unit testing.
ILIAS Setting Class.
getHideProfileBeforeSelfEval()
Get hide profile values before self evaluations.
activate($a_active)
Activate skill management.
setHideProfileBeforeSelfEval($a_val)
Set hide profile values before self evaluations.