Files
vivespos-landing/modules/system/models/Parameter.php
avives 1f72193a64
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
- Base: wintercms/winter branch 1.2 (full framework)
- Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS
- Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication
- Partials: hero (offline-first), features, modes (offline/nube toggle),
  screenshots, pricing (3 planes), comparison, FAQ, CTA
- Plugin VivesPOS.Site with ContactForm
- Dockerfile: PHP 8.2 Apache, port 80, healthcheck
- Added winter/wn-pages, blog, sitemap, seo plugins
- Active theme set to vivespos
2026-08-21 19:29:00 -06:00

165 lines
4.6 KiB
PHP

<?php namespace System\Models;
use Illuminate\Database\QueryException;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Log;
use Winter\Storm\Database\Model;
/**
* Parameters model
* Used for storing internal application parameters.
*
* @package winter\wn-system-module
* @author Alexey Bobkov, Samuel Georges
*/
class Parameter extends Model
{
use \Winter\Storm\Support\Traits\KeyParser;
/**
* @var string The database table used by the model.
*/
protected $table = 'system_parameters';
public $timestamps = false;
protected static $cache = [];
/**
* @var array List of attribute names which are json encoded and decoded from the database.
*/
protected $jsonable = ['value'];
/**
* Clear the cache after saving.
*/
public function afterSave()
{
Cache::forget(implode('-', [$this->table, $this->namespace, $this->group, $this->item]));
}
/**
* Returns a setting value by the module (or plugin) name and setting name.
* @param string $key Specifies the setting key value, for example 'system:updates.check'
* @param mixed $default The default value to return if the setting doesn't exist in the DB.
* @return mixed Returns the setting value loaded from the database or the default value.
*/
public static function get($key, $default = null)
{
if (array_key_exists($key, static::$cache)) {
return static::$cache[$key];
}
$record = static::findRecord($key);
if (!$record) {
return static::$cache[$key] = $default;
}
return static::$cache[$key] = $record->value;
}
/**
* Stores a setting value to the database.
* @param string|array $key Specifies the setting key value, for example 'system:updates.check'
* @param mixed $value The setting value to store, serializable.
* @return true
*/
public static function set($key, $value = null)
{
if (is_array($key)) {
foreach ($key as $_key => $_value) {
static::set($_key, $_value);
}
return true;
}
$record = static::findRecord($key);
if (!$record) {
$record = new static;
list($namespace, $group, $item) = $record->parseKey($key);
$record->namespace = $namespace;
$record->group = $group;
$record->item = $item;
}
try {
$record->value = $value;
$record->save();
} catch (QueryException $ex) {
// SQLSTATE[42S02]: Base table or view not found - migrations haven't run yet
if ($ex->getCode() !== '42S02') {
Log::error($ex, ['skipDatabaseLog' => true]);
}
}
static::$cache[$key] = $value;
return true;
}
/**
* Resets a setting value by deleting the record.
* @param string $key Specifies the setting key value.
* @return bool
*/
public function reset($key)
{
$record = static::findRecord($key);
if (!$record) {
return false;
}
$record->delete();
unset(static::$cache[$key]);
return true;
}
/**
* Returns a record (cached)
*/
public static function findRecord($key): ?static
{
if (!App::hasDatabase()) {
return null;
}
$record = new static;
list($namespace, $group, $item) = $record->parseKey($key);
$result = null;
try {
$result = $record
->applyKey($key)
->remember(5, implode('-', [$record->getTable(), $namespace, $group, $item]))
->first();
} catch (QueryException $ex) {
// SQLSTATE[42S02]: Base table or view not found - migrations haven't run yet
if ($ex->getCode() !== '42S02') {
Log::error($ex, ['skipDatabaseLog' => true]);
}
}
return $result;
}
/**
* Scope to find a setting record for the specified module (or plugin) name and setting name.
* @param string $key Specifies the setting key value, for example 'system:updates.check'
* @param mixed $default The default value to return if the setting doesn't exist in the DB.
* @return QueryBuilder
*/
public function scopeApplyKey($query, $key)
{
list($namespace, $group, $item) = $this->parseKey($key);
$query = $query
->where('namespace', $namespace)
->where('group', $group)
->where('item', $item);
return $query;
}
}