sfSocialPlugin 与 sfDoctrineGuardUser

发布于 2024-11-14 18:45:18 字数 795 浏览 5 评论 0原文

我将 symfony 1.4.11 与 sfDoctrineGuardUser 4.0.1 插件和 sfSocialPlugin 所以,我有下一个 问题 。问题来源是 sfSocialPlugin 和

lib/model/doctrine /sfDoctrineGuardPlugin/sfGuardUser.php 并设置类来扩展 sfSocialGuardUser 而不是PluginsfGuardUser

当我制作 class sfGuardUser extends sfSocialGuardUser 时,我遇到了问题,但是当 class sfGuardUser 扩展了 PluginsfGuardUser 一切正常。

我现在不知道为什么它不起作用,因为:

class sfGuardUser extends sfSocialGuardUser

class sfSocialGuardUser extends PluginsfGuardUser

谢谢!

I use symfony 1.4.11 with sfDoctrineGuardUser 4.0.1 plugin and sfSocialPlugin
So, I have next problem .Source of problem is sfSocialPlugin, and

lib/model/doctrine/sfDoctrineGuardPlugin/sfGuardUser.php and set class to extend sfSocialGuardUser instead of PluginsfGuardUser

When I make class sfGuardUser extends sfSocialGuardUser , I have problem, but when
class sfGuardUser extends PluginsfGuardUser all works fine.

I do not now why it is not work because :

class sfGuardUser extends sfSocialGuardUser

class sfSocialGuardUser extends PluginsfGuardUser

Thank you!

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

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

发布评论

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

评论(1

疾风者 2024-11-21 18:45:18

sfSocialGuardUser 中此函数的问题

public function getProfile()
  {
    $p = Doctrine_Query::create()
      ->from('sfGuardUserProfile p')
      ->where('p.user_id = ?', $this->getId())
      ->fetchOne();

    return empty($p) ? new sfGuardUserProfile : $p;
  }

没有它,一切正常/

Problem in this function in sfSocialGuardUser

public function getProfile()
  {
    $p = Doctrine_Query::create()
      ->from('sfGuardUserProfile p')
      ->where('p.user_id = ?', $this->getId())
      ->fetchOne();

    return empty($p) ? new sfGuardUserProfile : $p;
  }

Without it, all works fine/

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