ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SkillProfileFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Skill\Profile;
22 
28 {
29  public function profile(
30  int $id,
31  string $title,
32  string $description,
33  int $skill_tree_id,
34  string $image_id = "",
35  int $ref_id = 0
36  ): SkillProfile {
37  return new SkillProfile(
38  $id,
39  $title,
40  $description,
41  $skill_tree_id,
42  $image_id,
43  $ref_id
44  );
45  }
46 
47  public function roleProfile(
48  int $role_id,
49  int $profile_id,
50  string $title,
51  string $description,
52  int $skill_tree_id,
53  string $image_id,
54  int $ref_id
55  ): SkillRoleProfile {
56  return new SkillRoleProfile(
57  $role_id,
58  $profile_id,
59  $title,
60  $description,
61  $skill_tree_id,
62  $image_id,
63  $ref_id
64  );
65  }
66 
67  public function profileLevel(
68  int $profile_id,
69  int $base_skill_id,
70  int $tref_id,
71  int $level_id,
72  int $order_nr
74  return new SkillProfileLevel(
75  $profile_id,
76  $base_skill_id,
77  $tref_id,
78  $level_id,
79  $order_nr
80  );
81  }
82 
83  public function profileCompletion(
84  int $profile_id,
85  int $user_id,
86  string $date,
87  bool $fulfilled
89  return new SkillProfileCompletion(
90  $profile_id,
91  $user_id,
92  $date,
93  $fulfilled
94  );
95  }
96 
97  public function profileUserAssignment(
98  string $name,
99  int $id
101  return new SkillProfileUserAssignment(
102  $name,
103  $id
104  );
105  }
106 
107  public function profileRoleAssignment(
108  string $name,
109  int $id,
110  string $obj_title,
111  string $obj_type,
112  int $obj_id
114  return new SkillProfileRoleAssignment(
115  $name,
116  $id,
117  $obj_title,
118  $obj_type,
119  $obj_id
120  );
121  }
122 }
profileCompletion(int $profile_id, int $user_id, string $date, bool $fulfilled)
profile(int $id, string $title, string $description, int $skill_tree_id, string $image_id="", int $ref_id=0)
profileRoleAssignment(string $name, int $id, string $obj_title, string $obj_type, int $obj_id)
$ref_id
Definition: ltiauth.php:65
roleProfile(int $role_id, int $profile_id, string $title, string $description, int $skill_tree_id, string $image_id, int $ref_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
profileLevel(int $profile_id, int $base_skill_id, int $tref_id, int $level_id, int $order_nr)