cancelURI = $cancel_uri; return $this; } public function setException( PhabricatorApplicationTransactionValidationException $exception) { $this->exception = $exception; return $this; } protected function buildProxy() { return new AphrontDialogResponse(); } public function reduceProxyResponse() { $request = $this->getRequest(); $ex = $this->exception; $title = pht('Validation Errors'); $dialog = id(new AphrontDialogView()) ->setUser($request->getUser()) ->setTitle($title); $list = array(); foreach ($ex->getErrors() as $error) { $list[] = $error->getMessage(); } $dialog->appendList($list); $dialog->addCancelButton($this->cancelURI); return $this->getProxy()->setDialog($dialog); } }