ILIAS  release_8 Revision v8.24
class.ilECSCourseLmsUrl.php
Go to the documentation of this file.
1<?php
2
18declare(strict_types=1);
19
26{
27 public string $title = '';
28 public string $url = '';
29
33 public function setTitle(string $a_title): void
34 {
35 $this->title = $a_title;
36 }
37
41 public function setUrl(string $a_url): void
42 {
43 $this->url = $a_url;
44 }
45}
Represents a ecs course lms url.
setTitle(string $a_title)
Set title.
setUrl(string $a_url)
Set url.