如何从 sfPropelORMPlugin 加载 sfPropelPager?

发布于 2024-12-21 08:03:38 字数 491 浏览 1 评论 0原文

symfony 已经有 sfPropelPager 并且它似乎优先于插件中的一个。 而且它与插件 ORM 不兼容,从而导致 SQL 中出现严重错误。 更改自动加载来解决此问题的正确方法是什么?

<?php
require_once '/usr/share/php/symfony/autoload/sfCoreAutoload.class.php';

sfCoreAutoload::register();

class ProjectConfiguration extends sfProjectConfiguration
{
    public function setup()
    {
        $this->enableAllPluginsExcept(array('sfDoctrinePlugin', 'sfPropelPlugin'));
        $this->enablePlugins(array('sfPropelORMPlugin'));
    }
}

symfony already has sfPropelPager and it seems to take precedence of one from plugin.
And it is incompatible with plugin ORM thus causing nasty errors in SQL.
What's the right way to change autoload to fix this problem?

<?php
require_once '/usr/share/php/symfony/autoload/sfCoreAutoload.class.php';

sfCoreAutoload::register();

class ProjectConfiguration extends sfProjectConfiguration
{
    public function setup()
    {
        $this->enableAllPluginsExcept(array('sfDoctrinePlugin', 'sfPropelPlugin'));
        $this->enablePlugins(array('sfPropelORMPlugin'));
    }
}

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

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

发布评论

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

评论(1

楠木可依 2024-12-28 08:03:38

您必须禁用普通的旧sfPropelPlugin

<?php
// config/ProjectConfiguration.class.php

class ProjectConfiguration extends sfProjectConfiguration
{
  public function setup()
  {
    // http://www.symfony-project.org/api/1_4/sfProjectConfiguration#method_disableplugins
    $this->disablePlugins('sfPropelPlugin');
    $this->enablePlugins('sfPropelORMPlugin');
  }
}

You have to disable the plain old sfPropelPlugin:

<?php
// config/ProjectConfiguration.class.php

class ProjectConfiguration extends sfProjectConfiguration
{
  public function setup()
  {
    // http://www.symfony-project.org/api/1_4/sfProjectConfiguration#method_disableplugins
    $this->disablePlugins('sfPropelPlugin');
    $this->enablePlugins('sfPropelORMPlugin');
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文