This commit is contained in:
the-djmaze 2022-05-30 13:12:01 +02:00
parent fe9d0da14a
commit 5cc738e2ba
2 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<?php
use \RainLoop\Exceptions\ClientException;
class ChangePasswordPoppassdPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password Froxlor',
AUTHOR = 'Euphonique',
VERSION = '1.0',
RELEASE = '2022-05-30',
REQUIRED = '2.15.3',
CATEGORY = 'Security',
DESCRIPTION = 'Extension to allow users to change their passwords through Froxlor';
public function Supported() : string
{
return 'Use Change Password plugin';
}
}