class User implements ExtenderInterface

Methods

displayNameDriver(string $identifier, string $driver)

Add a display name driver.

permissionGroups(callable|string $callback)

Dynamically process a user's list of groups when calculating permissions.

registerPreference(string $key, callable $transformer = null, mixed|null $default = null)

Register a new user preference.

extend(Container $container, Extension $extension = null)

No description

Details

User displayNameDriver(string $identifier, string $driver)

Add a display name driver.

Parameters

string $identifier
string $driver

Return Value

User

User permissionGroups(callable|string $callback)

Dynamically process a user's list of groups when calculating permissions.

This can be used to give a user permissions for groups they aren't actually in, based on context. It will not change the group badges displayed for the user.

Parameters

callable|string $callback The callable can be a closure or invokable class, and should accept: - \Flarum\User\User $user: the user in question. - array $groupIds: an array of ids for the groups the user belongs to. The callable should return: - array $groupIds: an array of ids for the groups the user belongs to.

Return Value

User

User registerPreference(string $key, callable $transformer = null, mixed|null $default = null)

Register a new user preference.

Parameters

string $key
callable $transformer
mixed|null $default

Return Value

User

extend(Container $container, Extension $extension = null)

Parameters

Container $container
Extension $extension