ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilWebLinkList.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
27  protected int $webr_id;
28 
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;
42  parent::__construct($title, $description);
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)