NewsItem images: file / url

This commit is contained in:
2017-06-07 01:23:32 +02:00
parent 3f726e884d
commit d6a90d8144
2 changed files with 10 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ SELECT `news`.`id`, `content`.`title`, `content`.`content`, `news`.`podcast`
QUERY;
private static $LOAD_IMAGES =
'SELECT `id`, `file` AS `url`, `description` AS `title` FROM `news_pictures` WHERE `news` = ? AND `active` = 1';
'SELECT `id`, `file`, `description` AS `title` FROM `news_pictures` WHERE `news` = ? AND `active` = 1';
/**
* Create a new controller instance.

View File

@@ -16,11 +16,17 @@ class NewsSource {
class NewsImage extends Model {
public $id;
public $url;
public $title;
public $url;
public function getUrl() {
return '/img/news/' . $this->url;
public function __construct($data, $urlPrefix = '/') {
parent::__construct($data);
// Deserialisatie van JSON heeft url in data,
// lezen uit database heeft file en (als het goed is) urlPrefix
if(isset($data->file)) {
$this->url = $urlPrefix . $data->file;
}
}
}