cms-niceties/src/Forms/Authentificator.php

14 lines
268 B
PHP
Raw Normal View History

2024-03-26 03:22:27 +01:00
<?php
namespace A2nt\CMSNiceties\Forms;
use SilverStripe\Security\MemberAuthenticator\MemberAuthenticator;
class Authenticator extends MemberAuthenticator
{
public function getLoginHandler($link)
{
return LoginHandler::create($link, $this);
}
}