Ejemplo n.º 1
0
 /**
  * Verify action method
  *
  * @return void
  */
 public function verify($id, $hash)
 {
     $this->prepareView('verify.phtml');
     $this->view->title = 'Verify Your Email';
     $user = new Model\User();
     $this->view->result = $user->verify($id, $hash);
     $this->view->id = $user->id;
     $this->send();
 }