19 lines
433 B
PHP
19 lines
433 B
PHP
|
|
<?php namespace RainLab\User\NotifyRules;
|
||
|
|
|
||
|
|
use RainLab\User\Classes\UserEventBase;
|
||
|
|
|
||
|
|
class UserActivatedEvent extends UserEventBase
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Returns information about this event, including name and description.
|
||
|
|
*/
|
||
|
|
public function eventDetails()
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'name' => 'Activated',
|
||
|
|
'description' => 'A user is activated',
|
||
|
|
'group' => 'user'
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|