BookStack/app/Role.php

49 lines
985 B
PHP
Raw Normal View History

2015-08-29 14:03:42 +00:00
<?php
namespace BookStack;
2015-08-29 14:03:42 +00:00
use Illuminate\Database\Eloquent\Model;
class Role extends Model
{
2015-09-05 16:42:05 +00:00
/**
* Sets the default role name for newly registed users.
* @var string
*/
protected static $default = 'viewer';
2015-08-29 14:03:42 +00:00
/**
* The roles that belong to the role.
*/
public function users()
{
return $this->belongsToMany('BookStack\User');
2015-08-29 14:03:42 +00:00
}
/**
* The permissions that belong to the role.
*/
public function permissions()
{
return $this->belongsToMany('BookStack\Permission');
2015-08-29 14:03:42 +00:00
}
/**
* Add a permission to this role.
* @param Permission $permission
*/
public function attachPermission(Permission $permission)
{
$this->permissions()->attach($permission->id);
}
2015-09-05 16:42:05 +00:00
/**
* Get an instance of the default role.
* @return Role
*/
public static function getDefault()
{
return static::where('name', '=', static::$default)->first();
}
2015-08-29 14:03:42 +00:00
}