proxitok/app/Helpers/Misc.php

30 lines
898 B
PHP
Raw Normal View History

<?php
2022-01-30 18:02:52 -05:00
namespace App\Helpers;
2022-01-13 10:51:45 -05:00
class Misc {
2022-01-30 18:02:52 -05:00
static public function getCursor(): int {
return isset($_GET['cursor']) && is_numeric($_GET['cursor']) ? (int) $_GET['cursor'] : 0;
}
2022-03-11 17:24:13 -05:00
static public function getTtwid(): string {
2022-03-15 19:33:59 -04:00
return isset($_GET['cursor']) ? $_GET['cursor'] : '';
2022-03-11 17:24:13 -05:00
}
static public function url(string $endpoint = ''): string {
$protocol = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http";
$root = $protocol . '://' . $_SERVER['HTTP_HOST'];
return $root . self::env('APP_PATH', '') . $endpoint;
2022-01-30 18:02:52 -05:00
}
static public function env(string $key, $default_value) {
2022-02-15 07:55:36 -05:00
return $_ENV[$key] ?? $default_value;
}
2022-01-28 09:54:09 -05:00
/**
* Returns absolute path for view
*/
static public function getView(string $template): string {
2022-01-30 18:02:52 -05:00
return __DIR__ . "/../../views/{$template}.latte";
}
}