ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilECSCourseLmsUrl.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 
12 {
13  public $title = '';
14  public $url = '';
15 
19  public function __construct()
20  {
21 
22  }
23 
28  public function setTitle($a_title)
29  {
30  $this->title = $a_title;
31  }
32 
36  public function setUrl($a_url)
37  {
38  $this->url = $a_url;
39  }
40 }
41 ?>