ConstructionConsent live

This commit is contained in:
Frank Schubert
2025-01-27 02:12:55 +01:00
parent 39cf386638
commit 9657fc56fb
10 changed files with 532 additions and 29 deletions

View File

@@ -174,6 +174,13 @@ class ConstructionConsentFile extends mfBaseModel {
}
}
if(array_key_exists("filename", $filter)) {
$filename = $db->escape($filter['filename']);
if($filename) {
$where .= " AND ConstructionConsentFile.`filename` = '$filename'";
}
}
//var_dump($filter, $where);exit;
return $where;
}