21 lines
362 B
PHP
Executable File
21 lines
362 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;
|
|
}
|
|
|
|
public function lar_ver()
|
|
{
|
|
$app = App::getFacadeApplication();
|
|
return $app::VERSION;
|
|
}
|
|
}
|