Files
snipe-it/app/models/Setting.php
T

17 lines
250 B
PHP
Executable File

<?php
class Setting extends Elegant
{
public static function getSettings()
{
static $static_cache = NULL;
if (!$static_cache) {
$static_cache = Setting::find(1);
}
return $static_cache;
}
}