ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilECSUriList.php
Go to the documentation of this file.
1 <?php
2 
18 declare(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 }
add(string $a_uri, int $a_link_id)
Add uri.
Presentation of ecs uril (http://...campusconnect/courselinks)
getLinkIds()
Get link ids.
getUris()
Get uris.