Files
shopPRO/tests/stubs/Helpers.php
Jacek Pyziak d29d396197 ver. 0.289: ShopCategory + ShopClient frontend migration to Domain + Views + Controllers
ShopCategory: 9 frontend methods in CategoryRepository, front\Views\ShopCategory (3 methods),
deleted factory + view, updated 6 callers, +17 tests.

ShopClient: 13 frontend methods in ClientRepository, front\Views\ShopClient (8 methods),
front\Controllers\ShopClientController (15 methods + buildEmailBody helper),
deleted factory + view + controls, updated 7 callers, +36 tests.

Security fix: removed hardcoded password bypass 'Legia1916'.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 10:41:40 +01:00

25 lines
1.2 KiB
PHP

<?php
namespace Shared\Helpers;
class Helpers
{
public static function seo($str) { return $str; }
public static function delete_dir($path) {}
public static function alert($msg) {}
public static function error($msg) {}
public static function lang($key) { return $key; }
public static function delete_session($key) { unset($_SESSION[$key]); }
public static function htacces() {}
public static function delete_cache() {}
public static function get($key) { return null; }
public static function set_message($msg) {}
public static function clear_product_cache($id) {}
public static function email_check($email) { return filter_var($email, FILTER_VALIDATE_EMAIL); }
public static function get_session($key) { return $_SESSION[$key] ?? null; }
public static function set_session($key, $value) { $_SESSION[$key] = $value; }
public static function send_email($to, $subject, $body) { return true; }
public static function remove_special_chars($str) { return str_ireplace(['\'', '"', ',', ';', '<', '>'], ' ', $str); }
public static function normalize_decimal($val, $precision = 2) { return round((float)$val, $precision); }
public static function is_array_fix($value) { return is_array($value) && count($value); }
}