proxitok/app/Helpers/Misc.php

35 lines
937 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 {
return isset($_GET['cursor']) ? $_GET['cursor'] : '';
2022-03-11 17:24:13 -05:00
}
static public function url(string $endpoint = ''): string {
2022-03-29 13:37:57 -04:00
return self::env('APP_URL', '') . $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 {
return __DIR__ . "/../../templates/views/{$template}.latte";
}
2022-11-04 15:08:19 -04:00
/**
* Common method for rss feeds
*/
static public function rss(string $title) {
header('Content-Disposition: attachment; filename="' . $title . '.rss' . '"');
}
}