Beispiel #1
0
 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();
 }
Beispiel #2
0
 function __construct()
 {
     parent::__construct();
 }
Beispiel #3
0
 function __construct($name = null, $url = null)
 {
     $this->name = $name;
     $this->url = $url;
     parent::__construct();
 }