blob: 53a85ca86220c8d31755884fa6e569c4f02a0d0c (
plain) (
blame)
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
|
<?php
/**
* UF Settings
*
* @link https://github.com/lcharette/UF_Settings
* @copyright Copyright (c) 2016 Louis Charette
* @license
*/
namespace UserFrosting\Sprinkle\ConfigManager\Database\Models;
use \Illuminate\Database\Capsule\Manager as Capsule;
use UserFrosting\Sprinkle\Core\Database\Models\Model;
/**
* Settings class.
*
* @extends Model
*/
class Config extends Model {
/**
* @var string The name of the table for the current model.
*/
protected $table = "settings";
/**
* @var array The fields of the table for the current model.
*/
protected $fillable = [
"key",
"value",
"cache"
];
/**
* @var bool Enable timestamps for Users.
*/
public $timestamps = true;
/**
* Create a new Project object.
*
*/
public function __construct($properties = [])
{
parent::__construct($properties);
}
/**
* Model's relations
* Each of those should be in delete !
*
*/
/**
* Model's parent relation
*
*/
/**
* Delete this group from the database, along with any linked user and authorization rules
*
*/
public function delete()
{
// Delete the main object
$result = parent::delete();
return $result;
}
}
|