0

收到此错误:小部件“password_again”不存在。

我想不出它为什么突然开始出现。我正在使用 sfDoctrineGuard 插件提供的默认生成器文件

plugins/sfDoctrineGuardPlugin/modules/sfGuardUser/config/generator.yml

generator:
class: sfDoctrineGenerator
param:
  model_class:           sfGuardUser
  theme:                 admin
  non_verbose_templates: true
  with_show:             false
  singular:              ~
  plural:                ~
  route_prefix:          sf_guard_user
  with_doctrine_route:   true

config:
  fields:
    password_again: { label: "Password (again)" }

  list:
    title: User list
    display: [=username, created_at, updated_at, last_login]

  form:
    class: sfGuardUserAdminForm
    display:
      "NONE": [username, password, password_again]
      "Permissions and groups": [is_active, is_super_admin, groups_list, permissions_list]

  edit:
    title: Editing User "%%username%%"

  new:
    title: New User

对字段 password_again 的唯一其他引用在这里:

plugins/sfDoctrineGuardPlugin/lib/form/doctrine/base/BasesfGuardUserAdminForm.class.php

class BasesfGuardUserAdminForm extends BasesfGuardUserForm
{
  /**
   * @see sfForm
   */
  public function setup()
  {
    parent::setup();
    unset(
      $this['last_login'],
      $this['created_at'],
      $this['updated_at'],
      $this['salt'],
      $this['algorithm']
    );

    $this->widgetSchema['groups_list']->setLabel('Groups');
    $this->widgetSchema['permissions_list']->setLabel('Permissions');

    $this->widgetSchema['password'] = new sfWidgetFormInputPassword();
    $this->validatorSchema['password']->setOption('required', false);
    $this->widgetSchema['password_again'] = new sfWidgetFormInputPassword();
    $this->validatorSchema['password_again'] = clone $this->validatorSchema['password'];

    $this->widgetSchema->moveField('password_again', 'after', 'password');

    $this->mergePostValidator(new sfValidatorSchemaCompare('password', sfValidatorSchemaCompare::EQUAL, 'password_again', array(), array('invalid' => 'The two passwords must be the same.')));
  }
}

这又没有改变。所以我不太确定接下来要尝试什么才能让它发挥作用。

有任何想法吗?

4

2 回答 2

1

感谢您的评论约翰沃德

我自己设法解决了这个问题。

基本上我已经创建了自己的 sfGuardUserAdminForm 类来覆盖默认值。

在那个类的配置方法中,我使用的是$this->setWidgets()函数而不是单独调用$this->setWidget()

于 2010-07-05T14:30:48.800 回答
0

一旦我错误地为管理员生成了 sfGuardUser 模块,我就发现了这个错误。这是错误的,因为我应该改用插件附带的模块。

于 2012-04-11T16:07:47.667 回答