ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilWebLinkList.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
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}
Base class for Web Link lists.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc