forked from pageballoon/oc-passwordless-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Plugin.php
executable file
·51 lines (44 loc) · 1.14 KB
/
Plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php namespace Mercator\Passwordless;
use System\Classes\PluginBase;
class Plugin extends PluginBase
{
/**
* Component details
* @return array
*/
public function componentDetails()
{
return [
'name' => 'mercator.passwordless::lang.plugin.name',
'description' => 'mercator.passwordless::lang.plugin.description',
'icon' => 'wn-icon-key',
'homepage' => 'https://github.com/mercator/wn-passwordless-plugin'
];
}
/**
* Registers components
* @return array
*/
public function registerComponents()
{
return [
'Mercator\Passwordless\Components\Account' => 'passwordlessAccount'
];
}
/**
* Registers mail templates
* @return array
*/
public function registerMailTemplates()
{
return [
'mercator.passwordless::mail.login' => 'Passwordless login'
];
}
public function registerSchedule($schedule)
{
$schedule->call(function () {
\Mercator\Passwordless\Models\Token::clearExpired();
})->daily();
}
}