ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ilECSCourseLmsUrl.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
27{
28 public string $title = '';
29 public string $url = '';
30
34 public function setTitle(string $a_title): void
35 {
36 $this->title = $a_title;
37 }
38
42 public function setUrl(string $a_url): void
43 {
44 $this->url = $a_url;
45 }
46}
Represents a ecs course lms url.
setTitle(string $a_title)
Set title.
setUrl(string $a_url)
Set url.