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