81 lines
2.3 KiB
PHP
81 lines
2.3 KiB
PHP
<?php
|
|
|
|
use App\Services\LanguageService;
|
|
|
|
function db_pdo() {
|
|
return db();
|
|
}
|
|
|
|
function view($view, $data = []) {
|
|
extract($data);
|
|
$viewPath = __DIR__ . '/../../views/' . $view . '.php';
|
|
if (file_exists($viewPath)) {
|
|
require $viewPath;
|
|
} else {
|
|
echo "View $view not found";
|
|
}
|
|
}
|
|
|
|
function redirect($path) {
|
|
header("Location: $path");
|
|
exit;
|
|
}
|
|
|
|
function __($key, $default = null) {
|
|
return LanguageService::translate($key, $default);
|
|
}
|
|
|
|
function get_setting($key, $default = '') {
|
|
$db = db();
|
|
$stmt = $db->prepare("SELECT setting_value FROM settings WHERE setting_key = ?");
|
|
$stmt->execute([$key]);
|
|
$result = $stmt->fetch();
|
|
return $result ? $result['setting_value'] : $default;
|
|
}
|
|
|
|
function compress_image($source, $destination, $quality) {
|
|
$info = getimagesize($source);
|
|
if ($info['mime'] == 'image/jpeg') {
|
|
$image = imagecreatefromjpeg($source);
|
|
} elseif ($info['mime'] == 'image/gif') {
|
|
$image = imagecreatefromgif($source);
|
|
} elseif ($info['mime'] == 'image/png') {
|
|
$image = imagecreatefrompng($source);
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
imagejpeg($image, $destination, $quality);
|
|
return $destination;
|
|
}
|
|
|
|
function get_client_ip() {
|
|
$ipaddress = '';
|
|
if (isset($_SERVER['HTTP_CF_CONNECTING_IP']))
|
|
$ipaddress = $_SERVER['HTTP_CF_CONNECTING_IP'];
|
|
else if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
|
|
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
|
else if(isset($_SERVER['HTTP_X_FORWARDED']))
|
|
$ipaddress = $_SERVER['HTTP_X_FORWARDED'];
|
|
else if(isset($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']))
|
|
$ipaddress = $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
|
|
else if(isset($_SERVER['HTTP_FORWARDED_FOR']))
|
|
$ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
|
|
else if(isset($_SERVER['HTTP_FORWARDED']))
|
|
$ipaddress = $_SERVER['HTTP_FORWARDED'];
|
|
else if(isset($_SERVER['REMOTE_ADDR']))
|
|
$ipaddress = $_SERVER['REMOTE_ADDR'];
|
|
else
|
|
$ipaddress = 'UNKNOWN';
|
|
|
|
if (strpos($ipaddress, ',') !== false) {
|
|
$ips = explode(',', $ipaddress);
|
|
$ipaddress = trim($ips[0]);
|
|
}
|
|
|
|
return $ipaddress;
|
|
}
|
|
|
|
function is_ajax() {
|
|
return !empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest';
|
|
} |