Files
thetool/application/Mailtemplate/MailtemplateModel.php
2024-12-09 16:47:11 +01:00

170 lines
4.5 KiB
PHP

<?php
class MailtemplateModel {
public $name;
public $code;
public $is_include;
public $description;
public $subject;
public $body_text;
public $body_html;
public $note = null;
public $create_by = null;
public $edit_by = null;
public $create = null;
public $edit = null;
public static function create(Array $data) {
$model = new Mailtemplate();
foreach($data as $field => $value) {
if(property_exists(get_called_class(), $field)) {
$model ->$field = $value;
}
}
$me = new User();
$me->loadMe();
if($model->create_by === null) {
$model->create_by = $me->id;
}
if($model->edit_by === null) {
$model->edit_by = $me->id;
}
return $model;
}
public static function getAll() {
$items = [];
$db = FronkDB::singleton();
$res = $db->select("Mailtemplate", "*", "1 = 1 ORDER BY name");
if($db->num_rows($res)) {
while($data = $db->fetch_object($res)) {
$items[] = new Mailtemplate($data);
}
}
return $items;
}
public static function getFirst($filter = []) {
$db = FronkDB::singleton();
$where = self::getSqlFilter($filter);
$res = $db->select("Mailtemplate", "*", "$where ORDER BY name LIMIT 1");
mfLoghandler::singleton()->debug($where);
if($db->num_rows($res)) {
$data = $db->fetch_object($res);
$item = new Mailtemplate($data);
if($item->id) {
return $item;
} else {
return null;
}
}
return null;
}
public static function count($filter) {
$db = FronkDB::singleton();
$where = self::getSqlFilter($filter);
$sql = "SELECT COUNT(*) as cnt FROM `Mailtemplate`
WHERE $where
";
mfLoghandler::singleton()->debug($sql);
$res = $db->query($sql);
if($db->num_rows($res)) {
$data = $db->fetch_object($res);
return $data->cnt;
}
return 0;
}
public static function search($filter, $limit=false) {
$items = [];
$db = FronkDB::singleton();
$where = self::getSqlFilter($filter);
$sql = "SELECT Mailtemplate.* FROM `Mailtemplate`
WHERE $where
ORDER BY name
";
mfLoghandler::singleton()->debug($sql);
if(is_array($limit) && count($limit)) {
if(is_numeric($limit['start']) && is_numeric($limit['count'])) {
$sql .= " LIMIT ".$limit['start'].", ".$limit['count'];
} elseif(is_numeric($limit['count'])) {
$sql .= " LIMIT ".$limit['count'];
}
}
$res = $db->query($sql);
if($db->num_rows($res)) {
while($data = $db->fetch_object($res)) {
$items[] = new Mailtemplate($data);
}
}
return $items;
}
private static function getSqlFilter($filter) {
$where = "1=1 ";
$db = FronkDB::singleton();
//var_dump($filter);exit;
if(array_key_exists("is_include", $filter)) {
$is_include = $filter['is_include'];
if($is_include) {
$where .= " AND Mailtemplate.`is_include` = 1";
} else {
$where .= " AND Mailtemplate.`is_include` = 0";
}
}
if(array_key_exists("name", $filter)) {
$name = $db->escape($filter['name']);
if($name) {
$where .= " AND Mailtemplate.`name` LIKE '%$name%'";
}
}
if(array_key_exists("code", $filter)) {
$code = $db->escape($filter['code']);
if($code) {
$where .= " AND Mailtemplate.`code` = '$code'";
}
}
if(array_key_exists("subject", $filter)) {
$subject = $db->escape($filter['subject']);
if($subject) {
$where .= " AND Mailtemplate.`subject` LIKE '%$subject%'";
}
}
if(array_key_exists("description", $filter)) {
$description = $db->escape($filter['description']);
if($description) {
$where .= " AND Mailtemplate.`description` LIKE '%$description%'";
}
}
//var_dump($filter, $where);exit;
return $where;
}
}