40 lines
879 B
PHP
Executable File
40 lines
879 B
PHP
Executable File
<?php
|
|
|
|
namespace Model;
|
|
|
|
class Blog extends Model {
|
|
public $id;
|
|
public $title;
|
|
public $description;
|
|
public $news_category;
|
|
public $start_date;
|
|
public $end_date;
|
|
public $is_active;
|
|
|
|
public $url;
|
|
|
|
public function __construct($data, $images = null, $podcast = null) {
|
|
// Convert arrays to objects for consistent handling
|
|
if(is_array($data)) {
|
|
$data = (object) $data;
|
|
}
|
|
|
|
parent::__construct($data);
|
|
|
|
// Ensure id is a string, not an array
|
|
if(is_array($this->id)) {
|
|
$this->id = $this->id[0] ?? '';
|
|
}
|
|
|
|
// Ensure title is a string, not an array
|
|
if(is_array($this->title)) {
|
|
$this->title = $this->title[0] ?? '';
|
|
}
|
|
|
|
parent::ConvertToDateTime($this->start_date);
|
|
parent::ConvertToDateTime($this->end_date);
|
|
|
|
$this->url = "/blog/{$this->id}/" . parent::url_slug($this->title);
|
|
}
|
|
}
|