blob: f10e066c16504f5af530169865b120a790eb91fb (
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
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Account\Database\Models;
use Illuminate\Database\Capsule\Manager as Capsule;
use UserFrosting\Sprinkle\Core\Database\Models\Model;
/**
* Group Class
*
* Represents a group object as stored in the database.
*
* @package UserFrosting
* @author Alex Weissman
* @see http://www.userfrosting.com/tutorials/lesson-3-data-model/
*
* @property string slug
* @property string name
* @property string description
* @property string icon
*/
class Group extends Model
{
/**
* @var string The name of the table for the current model.
*/
protected $table = "groups";
protected $fillable = [
"slug",
"name",
"description",
"icon"
];
/**
* @var bool Enable timestamps for this class.
*/
public $timestamps = true;
/**
* Delete this group from the database, along with any user associations
*
* @todo What do we do with users when their group is deleted? Reassign them? Or, can a user be "groupless"?
*/
public function delete()
{
// Delete the group
$result = parent::delete();
return $result;
}
/**
* Lazily load a collection of Users which belong to this group.
*/
public function users()
{
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = static::$ci->classMapper;
return $this->hasMany($classMapper->getClassMapping('user'), 'group_id');
}
}
|