ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SkillRoleProfile.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Skill\Profile;
22 
29 {
30  protected int $role_id = 0;
31 
32  public function __construct(
33  int $role_id,
34  int $profile_id,
35  string $title,
36  string $description,
37  int $skill_tree_id,
38  string $image_id,
39  int $ref_id
40  ) {
41  global $DIC;
42 
43  parent::__construct($profile_id, $title, $description, $skill_tree_id, $image_id, $ref_id);
44  $this->role_id = $role_id;
45  }
46 
47  public function getRoleId(): int
48  {
49  return $this->role_id;
50  }
51 }
__construct(int $role_id, int $profile_id, string $title, string $description, int $skill_tree_id, string $image_id, int $ref_id)
global $DIC
Definition: shib_login.php:22
__construct(Container $dic, ilPlugin $plugin)