ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ContainerSkillFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Container\Skills;
22 
24 
30 {
31  public function skill(
32  int $skill_id,
33  int $tref_id,
34  int $cont_obj_id = 0,
35  string $title = "",
36  ?SkillProfile $profile = null
37  ): ContainerSkill {
38  return new ContainerSkill(
39  $skill_id,
40  $tref_id,
41  $cont_obj_id,
42  $title,
43  $profile
44  );
45  }
46 
47  public function memberSkill(
48  int $cont_obj_id,
49  int $user_id,
50  int $skill_id,
51  int $tref_id,
52  int $level_id,
53  bool $published
55  return new ContainerMemberSkill(
56  $cont_obj_id,
57  $user_id,
58  $skill_id,
59  $tref_id,
60  $level_id,
61  $published
62  );
63  }
64 }
skill(int $skill_id, int $tref_id, int $cont_obj_id=0, string $title="", ?SkillProfile $profile=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
memberSkill(int $cont_obj_id, int $user_id, int $skill_id, int $tref_id, int $level_id, bool $published)