ILIAS  release_8 Revision v8.24
class.ilTemporaryStakeholder.php
Go to the documentation of this file.
1<?php
2
11
18{
19 protected int $owner_id;
20
21 public function __construct()
22 {
23 global $DIC;
24
25 $this->owner_id = $DIC->user()->getId();
26 }
27
28 public function getId(): string
29 {
30 return 'irss_temp';
31 }
32
33 public function getOwnerOfNewResources(): int
34 {
35 return $this->owner_id;
36 }
37}
global $DIC
Definition: feed.php:28