ver. 0.274 - ShopClients Domain+DI migration

This commit is contained in:
2026-02-15 15:03:24 +01:00
parent 449e5fbe1c
commit df24da8915
19 changed files with 740 additions and 180 deletions

View File

@@ -1,17 +0,0 @@
<?php
namespace admin\factory;
class ShopClients
{
public static function get_order_all_info($name, $surname, $email)
{
global $mdb;
$results = $mdb->select('pp_shop_orders', '*', [
'client_name' => $name,
'client_surname' => $surname,
'client_email' => $email
]);
return $results;}
}
?>