login = $login; } /** * {@inheritdoc} */ public function getSubject() { return $this->app->trans('Your account on %application%', ['%application%' => $this->getPhraseanetTitle()]); } /** * {@inheritdoc} */ public function getMessage() { if (!$this->login) { throw new LogicException('You must set a login before calling getMessage'); } return $this->app->trans('Your account with the login %login% as been created', ['%login%' => $this->login]) . "\n" . $this->app->trans('You now have to set up your pasword'); } /** * {@inheritdoc} */ public function getButtonText() { return $this->app->trans('Setup my password'); } /** * {@inheritdoc} */ public function getButtonURL() { return $this->url; } }