*/ abstract class LoginForm extends Form { /** * Authenticator class to use with this login form * * Set this variable to the authenticator class to use with this login * form. * @var string */ protected $authenticator_class; /** * Return the title of the form for use in the frontend * For tabs with multiple login methods, for example. * This replaces the old `get_name` method * @return string */ abstract public function getAuthenticatorName(); }