ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilECSCourseLmsUrl.php
Go to the documentation of this file.
1 <?php
2 
18 declare(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 }
setTitle(string $a_title)
Set title.
Represents a ecs course lms url.
setUrl(string $a_url)
Set url.