nieuws/overzicht[/aantal/pagina] toegevoegd
This commit is contained in:
@@ -2,22 +2,65 @@
|
||||
|
||||
namespace Model;
|
||||
|
||||
class NewsSource {
|
||||
public $title;
|
||||
public $url;
|
||||
public $show;
|
||||
|
||||
public function __construct($title, $url, $show) {
|
||||
$this->title = $title;
|
||||
$this->url = $url;
|
||||
$this->show = $show;
|
||||
}
|
||||
}
|
||||
|
||||
class NewsImage extends Model {
|
||||
public $id;
|
||||
public $url;
|
||||
public $title;
|
||||
|
||||
public function __construct($data, $urlPrefix = '/') {
|
||||
parent::__construct($data);
|
||||
if($this->url) { $this->url = $urlPrefix . $this->url; }
|
||||
}
|
||||
}
|
||||
|
||||
class NewsItem extends Model {
|
||||
public $id;
|
||||
public $title;
|
||||
public $content;
|
||||
public $published;
|
||||
public $edited;
|
||||
public $images;
|
||||
public $edited;
|
||||
public $keywords;
|
||||
|
||||
public function __construct($data) {
|
||||
public $source;
|
||||
public $category;
|
||||
public $theme;
|
||||
public $region;
|
||||
|
||||
public $podcast;
|
||||
public $images;
|
||||
public $video;
|
||||
|
||||
public $url;
|
||||
|
||||
public function __construct($data, $images = null) {
|
||||
parent::__construct($data);
|
||||
parent::ConvertToDateTime($this->published);
|
||||
parent::ConvertToDateTime($this->edited);
|
||||
|
||||
//$this->image = new stdClass();
|
||||
//$this->image->url = "";
|
||||
//$this->image->title = $this->title;
|
||||
$this->source = $data->source ? new \Model\NewsSource($data->source, $data->source_url, $data->showsource) : null;
|
||||
$this->keywords = trim($data->keywords) ? explode(' ', $data->keywords) : null;
|
||||
$this->podcast = $data->podcast ? $data->podcast : null;
|
||||
|
||||
if($images) {
|
||||
$this->images = [];
|
||||
foreach($images as $image) {
|
||||
$this->images[] = new NewsImage($image, '/img/news/');
|
||||
}
|
||||
}
|
||||
|
||||
$this->url = "/nieuws/{$this->id}/" . parent::url_slug($this->title);
|
||||
}
|
||||
|
||||
public function detailsUrl() {
|
||||
|
||||
Reference in New Issue
Block a user