This plugin allows you to reward your members when some actions are made. To increment the statistics, this plugin is using SunLab.Measures
From the backend, create all the needed badges. A badge need at least, a name.
Automatic attachment with SunLab.Measures
When filling measure name and amount needed: the users will automatically receive badges once the measure reach the amount needed. Refer to SunLab.Measures for measure incrementation.
To attach or detach a badge manually, use attachBadge and detachBadge method,
which accept a badge reference as string (its name), int (its id), or a Badge model.
\Winter\User\Models\User::extend(function ($user) {
Event::listen('winter.user.activate', function($user) {
$user->attachBadge('Verified User');
});
});To simplify badge attachment verification, the plugin include a hasBadge method,
which accept a badge reference as string (its name), int (its id), or a Badge model.
if ($user->haBadge('Verified User')) {
// User has the 'Verified User' badge
}This plugin comes with two components:
Displays all the badge that can be rewarded, and the number of members of member who already won it.
Displays only the badges that a specific member won. The member could be the one actually logged in, or set by an url parameter.
The Badge model implement SimpleTree.
If you want to display the badges as a tree,
use the components' property tree-displayed to optimize the database search.
The default query will load the badges ordered by their measure name and amount needed.
SunLab.Measures is internally used by the plugin to increment
some measures when some events are emitted.
You can configure the most basic events from the backend using the generic event listener of Measures,
but for complexes cases, you'll need to manually create the listener from a Plugin.php file.
A use case for this could be to give a badge rewarding immediately after the registration,
because plugins' events are not supported by Measures as of today, we need to create it manually:
\Winter\User\Models\User::extend(function ($user) {
$user->bindEvent('model.afterCreate', function () use ($user) {
$user->incrementMeasure('registered');
});
});