-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathOption.php
90 lines (78 loc) · 1.66 KB
/
Option.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
namespace Appstract\Options;
use Illuminate\Database\Eloquent\Model;
class Option extends Model
{
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* Casts.
*
* @var array
*/
protected $casts = [
'value' => 'json',
];
/**
* The attributes that are mass assignable.
*
* @var [type]
*/
protected $fillable = [
'key',
'value',
];
/**
* Determine if the given option value exists.
*
* @param string $key
* @return bool
*/
public function exists($key)
{
return self::where('key', $key)->exists();
}
/**
* Get the specified option value.
*
* @param string $key
* @param mixed $default
* @return mixed
*/
public function get($key, $default = null)
{
if ($option = self::where('key', $key)->first()) {
return $option->value;
}
return $default;
}
/**
* Set a given option value.
*
* @param array|string $key
* @param mixed $value
* @return void
*/
public function set($key, $value = null)
{
$keys = is_array($key) ? $key : [$key => $value];
foreach ($keys as $key => $value) {
self::updateOrCreate(['key' => $key], ['value' => $value]);
}
// @todo: return the option
}
/**
* Remove/delete the specified option value.
*
* @param string $key
* @return bool
*/
public function remove($key)
{
return (bool) self::where('key', $key)->delete();
}
}