예제 #1
0
 public function __construct(array $defaults = [])
 {
     parent::__construct();
     $defaults = array_merge(['url' => 'http://google.de', 'title' => 'title', 'author' => 'my author', 'pubDate' => 2323, 'body' => 'this is a body', 'enclosureMime' => 'video/mpeg', 'enclosureLink' => 'http://google.de/web.webm', 'feedId' => 0, 'status' => 2, 'lastModified' => 113, 'rtl' => false], $defaults);
     if (!array_key_exists('guid', $defaults)) {
         $defaults['guid'] = $defaults['title'];
     }
     if (!array_key_exists('guidHash', $defaults)) {
         $defaults['guidHash'] = $defaults['guid'];
     }
     $this->generateSearchIndex();
     $this->fillDefaults($defaults);
 }