public function SignIn() {
$this->Auth('password');
}
public function SignIn() {
$this->Auth(Gdn::Config('Garden.Authenticator.DefaultScheme', 'password'));
}
public function EntryController_SignIn_Create(&$Sender){
$Sender->Auth(Gdn::Config('Garden.Authenticator.DefaultScheme', 'password'));
}
// Set up controller
$this->View = 'auth/'.$Authenticator->GetAuthenticationSchemeAlias();
public function EntryController_Render_Before(&$Sender) {
$CurrentScheme = Gdn::Config('Garden.Authenticator.DefaultScheme', 'password');
if(($CurrentScheme == 'simpledb') && isset($Sender->View)
&& ($Sender->View == 'auth/simpledb')){
$Sender->View = $this->GetView('simpledb.php');
}
}
// Set up controller
$this->View = $Authenticator->GetAuthView($AuthenticationSchemeAlias);
$this->GetAuthenticator($AuthenticationSchemeAlias)->GetAuthView();
It looks like you're new here. If you want to get involved, click one of these buttons!