ILIAS  release_8 Revision v8.24
class.ilECSUriList.php
Go to the documentation of this file.
1<?php
2
18declare(strict_types=1);
25{
26 public array $uris = array();
27
31 public function add(string $a_uri, int $a_link_id): void
32 {
33 $this->uris[$a_link_id] = $a_uri;
34 }
35
39 public function getLinkIds(): array
40 {
41 return array_keys($this->uris);
42 }
43
47 public function getUris(): array
48 {
49 return $this->uris;
50 }
51}
Presentation of ecs uril (http://...campusconnect/courselinks)
add(string $a_uri, int $a_link_id)
Add uri.
getUris()
Get uris.
getLinkIds()
Get link ids.