Move ChangePassword ISPConfig to own extension

This commit is contained in:
the-djmaze 2023-04-11 09:14:59 +02:00
parent e8a5d09b97
commit 9689b480a0
3 changed files with 40 additions and 1 deletions

View file

@ -0,0 +1,19 @@
<?php
use \RainLoop\Exceptions\ClientException;
class ChangePasswordISPConfigPlugin extends \RainLoop\Plugins\AbstractPlugin
{
const
NAME = 'Change Password ISPConfig',
VERSION = '2.14',
RELEASE = '2022-04-28',
REQUIRED = '2.28.0',
CATEGORY = 'Security',
DESCRIPTION = 'Extension to allow users to change their passwords through ISPConfig';
public function Supported() : string
{
return 'Use Change Password plugin';
}
}