ILIAS  release_8 Revision v8.24
class.ilWebLinkList.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
26{
27 protected int $webr_id;
28
29 protected DateTimeImmutable $create_date;
30 protected DateTimeImmutable $last_update;
31
32 public function __construct(
33 int $webr_id,
34 string $title,
35 ?string $description,
36 DateTimeImmutable $create_date,
37 DateTimeImmutable $last_update
38 ) {
39 $this->webr_id = $webr_id;
40 $this->create_date = $create_date;
41 $this->last_update = $last_update;
43 }
44
45 public function getWebrId(): int
46 {
47 return $this->webr_id;
48 }
49
50 public function getCreateDate(): DateTimeImmutable
51 {
52 return $this->create_date;
53 }
54
55 public function getLastUpdate(): DateTimeImmutable
56 {
57 return $this->last_update;
58 }
59}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc