mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 06:24:44 +02:00

* simplify setup command * add installer page * add route for installer * adjust gitignore * set colors globally * add "unsaved data changes" alert * add helper method to check if panel is installed * make nicer * redis username isn't required * bring back db settings command * store current date in "installed" file * only redirect if install was successfull * remove fpm requirement * change "installed" marker to env variable * improve requirements step * add commands to change cache, queue or session drivers respectively * removed `grouped` for better mobile view
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
if (!function_exists('is_digit')) {
|
|
/**
|
|
* Deal with normal (and irritating) PHP behavior to determine if
|
|
* a value is a non-float positive integer.
|
|
*/
|
|
function is_digit(mixed $value): bool
|
|
{
|
|
return !is_bool($value) && ctype_digit(strval($value));
|
|
}
|
|
}
|
|
|
|
if (!function_exists('is_ip')) {
|
|
function is_ip(?string $address): bool
|
|
{
|
|
return $address !== null && filter_var($address, FILTER_VALIDATE_IP) !== false;
|
|
}
|
|
}
|
|
|
|
if (!function_exists('object_get_strict')) {
|
|
/**
|
|
* Get an object using dot notation. An object key with a value of null is still considered valid
|
|
* and will not trigger the response of a default value (unlike object_get).
|
|
*/
|
|
function object_get_strict(object $object, ?string $key, mixed $default = null): mixed
|
|
{
|
|
if (is_null($key) || trim($key) == '') {
|
|
return $object;
|
|
}
|
|
|
|
foreach (explode('.', $key) as $segment) {
|
|
if (!is_object($object) || !property_exists($object, $segment)) {
|
|
return value($default);
|
|
}
|
|
|
|
$object = $object->{$segment};
|
|
}
|
|
|
|
return $object;
|
|
}
|
|
}
|
|
|
|
if (!function_exists('is_installed')) {
|
|
function is_installed(): bool
|
|
{
|
|
// This defaults to true so existing panels count as "installed"
|
|
return env('APP_INSTALLED', true);
|
|
}
|
|
}
|