ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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 
57  public function getHideProfileBeforeSelfEval()
58  {
59  return $this->get("hide_profile_self_eval");
60  }
61 }
getHideProfileBeforeSelfEval()
Get hide profile values before self evaluations.
setHideProfileBeforeSelfEval($a_val)
Set hide profile values before self evaluations.
activate($a_active)
Activate skill management.