function getItems()
 {
     if (!is_numeric($this->id) || $this->id <= 0) {
         return null;
     }
     $item = new FeedItem();
     if ($item->open('i.feed = ' . $this->id)) {
         return $item;
     }
     return null;
 }