Symfony 后端表单

发布于 2024-11-18 20:10:38 字数 1420 浏览 5 评论 0原文

我使用 symfony 1.4.11。我有前端和后端表单。

前端:

<?php

{
  public function configure()
  {

     $user = sfContext::getInstance()->getUser()->getGuardUser()->getProfile();

    $this->removeFields();


$this->widgField();
      $this->widgetSchema->setLabels(array(
  'time_id'    => 'Duration *',

   ));
  }

 protected function removeFields()
  {
 unset(

      $this['created_at'],
      $this['updated_at'],
      $this['is_closed'],
      $this['invoice_url'],
      $this['is_cancel']
      );
  }

  protected function widgField()
  {
 $this->widgetSchema['user_id'] = new sfWidgetFormInputHidden();
  }


   protected function  doUpdateObject($values)
  {
    parent::doUpdateObject($values);
    $this->getObject()->setUserId(sfContext::getInstance()->getUser()->getGuardUser()->getId());
  }
}

和后端:

<?php
class BackendPaymentForm extends PaymentForm
{
  public function configure()
  {
    parent::configure();


  }

  protected function removeFields()
  {
    unset(
     $this['updated_at'],
     $this['created_at'],
     $this['user_id'],
     $this['time_id'],
     $this['invoice_url'],
     $this['is_cancel']

    );
  }
   protected function widgField()
  {

  }

}

?>

问题是,我在前端 doUpdateObject 设置了 user_id ,在后端我需要管理员可以设置一个参数,这一切都可以,但它将 user_id 更改为管理员 ID。 .. 谢谢你!

I use symfony 1.4.11. I have frontend and backend form.

Frontend :

<?php

{
  public function configure()
  {

     $user = sfContext::getInstance()->getUser()->getGuardUser()->getProfile();

    $this->removeFields();


$this->widgField();
      $this->widgetSchema->setLabels(array(
  'time_id'    => 'Duration *',

   ));
  }

 protected function removeFields()
  {
 unset(

      $this['created_at'],
      $this['updated_at'],
      $this['is_closed'],
      $this['invoice_url'],
      $this['is_cancel']
      );
  }

  protected function widgField()
  {
 $this->widgetSchema['user_id'] = new sfWidgetFormInputHidden();
  }


   protected function  doUpdateObject($values)
  {
    parent::doUpdateObject($values);
    $this->getObject()->setUserId(sfContext::getInstance()->getUser()->getGuardUser()->getId());
  }
}

And Backend:

<?php
class BackendPaymentForm extends PaymentForm
{
  public function configure()
  {
    parent::configure();


  }

  protected function removeFields()
  {
    unset(
     $this['updated_at'],
     $this['created_at'],
     $this['user_id'],
     $this['time_id'],
     $this['invoice_url'],
     $this['is_cancel']

    );
  }
   protected function widgField()
  {

  }

}

?>

Problem is, that I have in frontend doUpdateObject which set user_id , and in backend I need that admin can set one parameter, it is all ok, but it change user_id to admin id... Thank you!

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

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

发布评论

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

评论(1

请爱~陌生人 2024-11-25 20:10:38

我不认为这是好方法,但它是工作:)

class BackendPaymentForm extends PaymentForm
{
  public function configure()
  {
    parent::configure();


  }

  protected function removeFields()
  {
    unset(
     $this['updated_at'],
     $this['created_at'],
     $this['time_id'],
     $this['invoice_url'],
     $this['is_cancel']

    );
  }
   protected function widgField()
  {
$this->widgetSchema['user_id'] = new sfWidgetFormInputHidden();
  }


 protected function  doUpdateObject($values)
  {
    parent::doUpdateObject($values);
    $this->getObject()->setUserId($values['user_id']);
  }
}

I do not is it good way but it is work:)

class BackendPaymentForm extends PaymentForm
{
  public function configure()
  {
    parent::configure();


  }

  protected function removeFields()
  {
    unset(
     $this['updated_at'],
     $this['created_at'],
     $this['time_id'],
     $this['invoice_url'],
     $this['is_cancel']

    );
  }
   protected function widgField()
  {
$this->widgetSchema['user_id'] = new sfWidgetFormInputHidden();
  }


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