class UserDiskPolicy extends CachedPolicy

Traits

HandlesAuthorization

Constants

TIME

Time to store the cached values.

(is irrelevant for the array store)

Properties

protected Cache $cache

The cache instance to use for caching policies.

from  CachedPolicy

Methods

__construct()

Create a new CachedPolicy.

mixed
remember(string $key, callable $callback)

Wrapper for the Cache::remember function of the array cache.

bool|null
before(User $user, string $ability)

Intercept all checks.

bool
create(User $user)

Determine if the given user can create a new disk.

bool
access(User $user, UserDisk $disk)

Determine if the given disk can be accessed (i.e. used for new volumes) by the user.

bool
update(User $user, UserDisk $disk)

Determine if the given user can update the storage disk.

bool
destroy(User $user, UserDisk $disk)

Determine if the given user can destroy the storage disk.

Details

in CachedPolicy at line 31
__construct()

Create a new CachedPolicy.

in CachedPolicy at line 43
mixed remember(string $key, callable $callback)

Wrapper for the Cache::remember function of the array cache.

Parameters

string $key

Key of the cached item

callable $callback

Callback returning the cached item

Return Value

mixed

at line 22
bool|null before(User $user, string $ability)

Intercept all checks.

Parameters

User $user
string $ability

Return Value

bool|null

at line 37
bool create(User $user)

Determine if the given user can create a new disk.

Parameters

User $user

Return Value

bool

at line 49
bool access(User $user, UserDisk $disk)

Determine if the given disk can be accessed (i.e. used for new volumes) by the user.

Parameters

User $user
UserDisk $disk

Return Value

bool

at line 62
bool update(User $user, UserDisk $disk)

Determine if the given user can update the storage disk.

Parameters

User $user
UserDisk $disk

Return Value

bool

at line 75
bool destroy(User $user, UserDisk $disk)

Determine if the given user can destroy the storage disk.

Parameters

User $user
UserDisk $disk

Return Value

bool