mirror of
https://github.com/a2nt/cms-niceties.git
synced 2024-10-22 11:05:46 +02:00
14 lines
268 B
PHP
14 lines
268 B
PHP
|
<?php
|
||
|
|
||
|
namespace A2nt\CMSNiceties\Forms;
|
||
|
|
||
|
use SilverStripe\Security\MemberAuthenticator\MemberAuthenticator;
|
||
|
|
||
|
class Authenticator extends MemberAuthenticator
|
||
|
{
|
||
|
public function getLoginHandler($link)
|
||
|
{
|
||
|
return LoginHandler::create($link, $this);
|
||
|
}
|
||
|
}
|