예제 #1
0
파일: Event.class.php 프로젝트: Rorto/Leed
 function __construct($guid = null, $title = null, $description = null, $content = null, $pubdate = null, $link = null, $category = null, $creator = null)
 {
     $this->guid = $guid;
     $this->title = $title;
     $this->creator = $creator;
     $this->content = $content;
     $this->description = $description;
     $this->pubdate = $pubdate;
     $this->link = $link;
     $this->category = $category;
     parent::__construct();
 }
예제 #2
0
파일: Folder.class.php 프로젝트: Rorto/Leed
 function __construct()
 {
     parent::__construct();
 }
예제 #3
0
파일: Feed.class.php 프로젝트: Rorto/Leed
 function __construct($name = null, $url = null)
 {
     $this->name = $name;
     $this->url = $url;
     parent::__construct();
 }