You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
672 B

<?php
class Feed_Item
{
public $origin;
public $name;
public $title;
public $data;
public $date;
public $author;
public $hits;
public $importance;
public $keywords;
public $href;
public function __construct($origin, $name, $title, $data, $date, $author, $hits, $importance, $keywords, $href)
{
$this->origin = $origin;
$this->name = $name;
$this->title = $title;
$this->data = $data;
$this->date = $date;
$this->author = $author;
$this->hits = $hits;
$this->importance = $importance;
$this->keywords = $keywords;
$this->href = $href;
}
}