ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilECSUriList.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
27{
28 public array $uris = array();
29
33 public function add(string $a_uri, int $a_link_id): void
34 {
35 $this->uris[$a_link_id] = $a_uri;
36 }
37
41 public function getLinkIds(): array
42 {
43 return array_keys($this->uris);
44 }
45
49 public function getUris(): array
50 {
51 return $this->uris;
52 }
53}
Presentation of ecs uril (http://...campusconnect/courselinks)
add(string $a_uri, int $a_link_id)
Add uri.
getUris()
Get uris.
getLinkIds()
Get link ids.