2022-06-02 22:10:26 +08:00
|
|
|
<?php
|
|
|
|
|
2024-03-17 21:50:32 +08:00
|
|
|
use RainLoop\Exceptions\ClientException;
|
2022-06-02 22:10:26 +08:00
|
|
|
|
|
|
|
class ChangePasswordHestiaPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|
|
|
{
|
|
|
|
const
|
|
|
|
NAME = 'Change Password Hestia',
|
|
|
|
AUTHOR = 'Jaap Marcus',
|
2024-03-17 21:50:32 +08:00
|
|
|
VERSION = '2.36',
|
|
|
|
RELEASE = '2024-03-17',
|
|
|
|
REQUIRED = '2.36.0',
|
2022-06-02 22:10:26 +08:00
|
|
|
CATEGORY = 'Security',
|
|
|
|
DESCRIPTION = 'Extension to allow users to change their passwords through HestiaCP';
|
|
|
|
|
|
|
|
public function Supported() : string
|
|
|
|
{
|
|
|
|
return 'Use Change Password plugin';
|
|
|
|
}
|
|
|
|
}
|