예제 #1
0
 /**
  * Redirects the user to the index page.
  *
  * @see \Ableron\Core\Controller\Page\AbstractPage::onProcessFormSuccessful()
  */
 public function onProcessFormSuccessful()
 {
     parent::onProcessFormSuccessful();
     // fire event: login attempt succeeded
     Application::getEventManager()->fireEvent(new LoginAttemptSuccessfulEvent($this->username, $this->password));
     // redirect to index page
     $this->redirectTo(EnvironmentUtil::getInternalUrl('/'));
 }