0

私はsfDoctrineGuardプラグインをベースとして使用するモジュールに取り組んでいるので(sfDoctrineGuardを使用することを意味します)、私のモジュールでこのコードを開発しました:

class UsuariosForm extends sfGuardUserForm {
    protected $current_user;

    public function configure() {
        unset(
                $this['is_super_admin'], $this['updated_at'], $this['groups_list'], $this['permissions_list'], $this['last_login'], $this['created_at'], $this['salt'], $this['algorithm']
        );

        $id_empresa = sfContext::getInstance()->getUser()->getGuardUser()->getSfGuardUserProfile()->getIdempresa();
        $this->setDefault('idempresa', $id_empresa);

        $this->current_user = sfContext::getInstance()->getUser()->getGuardUser();

        $this->validatorSchema['idempresa'] = new sfValidatorPass();

        $this->widgetSchema['first_name'] = new sfWidgetFormInputText(array(), array('class' => 'input-block-level'));
        $this->widgetSchema['last_name'] = new sfWidgetFormInputText(array(), array('class' => 'input-block-level'));
        $this->widgetSchema['username'] = new sfWidgetFormInputText(array(), array('class' => 'input-block-level'));
        $this->widgetSchema['email_address'] = new sfWidgetFormInputText(array(), array('class' => 'input-block-level'));
        $this->widgetSchema['password'] = new sfWidgetFormInputPassword(array(), array('class' => 'input-block-level'));
        $this->widgetSchema['password_confirmation'] = new sfWidgetFormInputPassword(array(), array('class' => 'input-block-level'));

        $this->validatorSchema['password']->setOption('required', true);
        $this->validatorSchema['password_confirmation'] = clone $this->validatorSchema['password'];

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

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

    public function save($con = null) {
        if (sfContext::getInstance()->getActionName() == "create" || sfContext::getInstance()->getActionName() == "new") {
            $new_user = parent::save($con); /* @var $user sfGuardUser */
            $new_user->addGroupByName('Monitor');
        }

        return $new_user;
    }

}

最初の関数は、sfDoctrineGuard プラグイン フォームの代わりに独自のフォームを持つことを可能にし、2 番目の関数は、save()作成中の新しいユーザーにデフォルト グループを追加するためのメソッドのオーバーライドです。idempresaお気づきかもしれませんが(関数内で)デフォルトを追加したいのですが、config()機能していません。何か間違っているか、わからない可能性があります。テーブルにidempresa格納されたフィールドであり、もちろん関係が構成されています。ここでの私の質問は次のとおりです。ユーザーの作成時にプロファイルを設定するためにsfGuardUserProfile、デフォルトを設定する正しい方法は何ですか?idempresa

4

1 に答える 1

1

$new_userオブジェクトを再度保存する必要があります。$new_user->save($con)

また、save() メソッドで action_name をチェックする必要はありません。オブジェクトが新しいかどうかをチェックできます。Objectform にはそのためのメソッドがあります。

<?php
    ...
    public function save($con = null)
    {
        $new_user = parent::save($con);
        if($this->isNew())
        {
            $new_user->addGroupByName('Monitor');
            $new_user->save($con); //this saves the group
        }
        return $new_user;
    }
    ...
于 2013-06-19T06:56:56.630 に答える