ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
class.SkillRoleProfile.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 namespace ILIAS\Skill\Profile;
23 
30 {
31  protected int $role_id = 0;
32 
33  public function __construct(
34  int $role_id,
35  int $profile_id,
36  string $title,
37  string $description,
38  int $skill_tree_id,
39  string $image_id,
40  int $ref_id
41  ) {
42  global $DIC;
43 
44  parent::__construct($profile_id, $title, $description, $skill_tree_id, $image_id, $ref_id);
45  $this->role_id = $role_id;
46  }
47 
48  public function getRoleId(): int
49  {
50  return $this->role_id;
51  }
52 }
__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:25
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)