没有用户名? sfDoctrineGuard/应用

发布于 2024-10-29 11:04:01 字数 265 浏览 0 评论 0原文

我正在使用 sfDoctrineApplyPlugin 并且注册表需要用户名 - 删除此字段的最佳方法是什么?

由于 sfDoctrineGuardPlugin 允许通过用户名或电子邮件地址登录,我希望我的应用程序仅使用电子邮件地址来识别用户。在注册时指定用户名超出了要求。

我是否需要从视图中隐藏此字段,然后在提交时生成一个存储的用户名以满足插件的需要,但用户永远不需要查看或使用?生成这个的最佳方法是什么?电子邮件地址中@之前的位?

非常感谢您提前提供的任何帮助。

I'm using the sfDoctrineApplyPlugin and the registration form requires a username - what's the best way of removing this field?

As the sfDoctrineGuardPlugin allows login via username or email address I'd like my application to use the email address only to identify users. Making specifying a username in registration surplus to requirements.

Would I need to hide this field from the view and then on submit generate a username that's stored to satisfy the plugins but the user never needs to see or use? What's the best way of generating this? The bit before the @ in the email address?

Many thanks for any help in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神经暖 2024-11-05 11:04:01

我想你可以从这里开始 Symfony:如何反转插件架构中的“notnull:true”?
你可以这样做:

class sfGuardUserForm extends PluginsfGuardUserForm
{
  protected function doUpdateObject($values)
  {
    $email_array = explode($values['email']);
    $this->getObject()->set('username', $email_array[0]);

    parent::doUpdateObject($values);
  }
}

I think you could start here Symfony: how would you reverse the "notnull:true" in a schema of a plugin?.
And you could do this:

class sfGuardUserForm extends PluginsfGuardUserForm
{
  protected function doUpdateObject($values)
  {
    $email_array = explode($values['email']);
    $this->getObject()->set('username', $email_array[0]);

    parent::doUpdateObject($values);
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文