0

在我的应用程序中,我有很多模块和很多带有自己小部件的表单。
我一直在尝试全局“取消设置”、“隐藏”或“只读”小部件。
我知道它可以在表单的configure()函数中为一个小部件执行此操作,但我正在寻找一种更好的解决方案,如果可能的话以全局方式。更改所有模块形式并跟踪它们可能会很痛苦。
线程可能有点长,但我认为它很容易理解问题。非常感谢您有时间阅读它 :)

我已经构建了一个带有时间戳行为的简单新闻模块来测试一些选项,但它们仍然没有工作。

  • 桌子:TbNews
  • 列:
    • id作为主键
    • scontent作为保存新闻内容的文本字段。
    • created_at作为日期时间。(时间戳行为)
    • updated_at作为日期时间。(时间戳行为)


TbNews schema.yml:

TbNews:
  connection: doctrine_master
  tableName: tb_news
  columns:
    id:
      type: integer(8)
      fixed: false
      unsigned: false
      primary: true
      autoincrement: true
    scontent:
      type: string(64000)
      fixed: false
      unsigned: false
      primary: false
      notnull: true
      autoincrement: false
  actAs:
    Timestampable:
      created:
        name: created_at
        type: timestamp
        format: Y-m-d H:i:s
        options:
          notnull: false
          required: false
      updated:
        name: updated_at
        type: timestamp
        format: Y-m-d H:i:s
        options:
          notnull: false
          required: false


TbNews 中
的updated_at (例如,这里只写了updated_at 列):

class TbNewsForm extends PluginTbNewsForm
{
  public function configure()
  {
      $this->setWidgets(array(
          'updated_at'   => new sfWidgetFormDateTime(),
      ));
      $this->setValidators(array(
        'updated_at'   => new sfValidatorDateTime(array('required' => false)),
      ));
  }
}


TbNews updated_at 的模板 _form.php
测试了很多选项,手动渲染 updated_at :“echo $form['updated_at']” 并且不渲染它。

<?php echo $form->renderHiddenFields(false) ?>


update_at带有列的全局测试 lib/form/doctrine/BaseFormDoctrine.class.php

  • 使用sfWidgetFormInputHidden(),小部件不会在模板中呈现。
    测试取消设置它,没有取消它,使用 setWidget,没有它......所有可能的选项,但字段 updated_at 未在模板中呈现。(使用了 renderHiddenFields() )
abstract class BaseFormDoctrine extends sfFormDoctrine
{
  public function setup()
  {
      $value_updated_at = $this->getObject()->updated_at;
      unset($this->widgetSchema['updated_at']);
      unset($this->validatorSchema['updated_at']);
      $this->widgetSchema['updated_at'] = new sfWidgetFormInputHidden();
      $this->widgetSchema['updated_at']->setOption('is_hidden', 'true');
      $this->widgetSchema['updated_at']->setOption('type', 'hidden'); 
      $this->setDefault('updated_at', $value_updated_at);
      $this->setWidget('updated_at', new sfWidgetFormInputHidden(array('value'=>$value_updated_at)));
      //$this->setWidget('updated_at', $this->widgetSchema['updated_at']);
  }
}


  • 只读:在 _form.php 模板中
    添加了该字段updated_at,但未显示为只读。似乎不适用于sfWidgetFormDateTime.

      $this->widgetSchema['updated_at']->setAttribute('readonly', 'readonly');
    


问题和想法:
可能BaseFormDoctrine不是在所有表单模块中全局更改小部件的正确方法,或者我的测试中可能有问题。

您可能知道,如果我们直接在 Form 小部件中使用上述代码TbNewsForm configure(),我们可以轻松地将小部​​件从一种类型更改为另一种类型,并单独渲染或隐藏它,并且它可以工作。

  • 但是我们如何才能在全球范围内实施它呢?
  • 是否需要更改 symfony 的核心代码?

非常感谢您花时间阅读它,欢迎任何评论或解决方案:)

4

2 回答 2

0

换班对BaseFormDoctrine你没有帮助。表单的小部件在给定表单的基类中设置(BaseTbNewsForm在您的情况下),因此它们将覆盖BaseFormDoctrine类中所做的任何更改。

如果您想对每个表单执行相同的操作但不想重写每个类中的代码,您可以创建一个实用程序类并在表单configure()函数中调用它的方法。

我认为在不改变 Doctrine / Symfony 内部结构的情况下,没有办法在全局范围内执行此操作(您必须更改生成表单的基类的方式)。

于 2013-02-08T10:56:44.657 回答
0

我找到了一种可行的方法,但可能不是最好的解决方案,因为它涉及修改 symfony 的源代码。核心文件sfFormDoctrine.class.php中的函数setupInheritance()在设置小部件和验证器后被所有表单调用,如果我们在那里添加代码,我们的更改将对所有表单全局生效。 在下面的示例中,所有小部件 'created_at' 和 'updated_at' 将被取消设置,然后设置为隐藏:

 /**
   * Used in generated forms when models use inheritance.
   */
  protected function setupInheritance()
  {
    if (isset($this))
    {
      $oWidgetSchema = $this->getWidgetSchema();
      if (isset($oWidgetSchema))
      {
        $screatedcolumn = "created_at";
        $supdatedcolumn = "updated_at";

        //if ($this->isNew()) //we can add a check for new records

        //we can also add checks for frontend or backend
        //$request = sfContext::getInstance()->getRequest();
        //$this->url = 'http'.($request->isSecure() ? 's' : '').'://'. $request->getHost();
        //$suri_params = $request->getParameterHolder()->getAll();

        //set [created_at] as hidden field widget, and set its default value to the Original one before sending it to Timestampable.php Listener.
        if ( $oWidgetSchema->offsetExists($screatedcolumn) )
        {
          $value_created_at = $this->getObject()->created_at;
          unset($this->widgetSchema[$screatedcolumn]);
          $this->widgetSchema[$screatedcolumn] = new sfWidgetFormInputHidden();
          $this->widgetSchema[$screatedcolumn]->setOption('is_hidden', 'true');
          $this->widgetSchema[$screatedcolumn]->setOption('type', 'hidden');
          //unset($this->validatorSchema[$screatedcolumn]); //unset its validator to make sure values are not checked by default, optional.
          $this->setDefault($screatedcolumn, $value_created_at);
        }
        //set [updated_at] as hidden field widget, and set its default value to time() before sending it to Timestampable.php Listener.
        if ( $oWidgetSchema->offsetExists($supdatedcolumn) )
        {
          //$value_updated_at = $this->getObject()->updated_at;
          unset($this->widgetSchema[$supdatedcolumn]);
          $this->widgetSchema[$supdatedcolumn] = new sfWidgetFormInputHidden();
          $this->widgetSchema[$supdatedcolumn]->setOption('is_hidden', 'true');
          $this->widgetSchema[$supdatedcolumn]->setOption('type', 'hidden');
          //unset($this->validatorSchema[$supdatedcolumn]); //unset its validator to make sure values are not checked by default, optional.
          $this->setDefault($supdatedcolumn, time());
        }
      }
    }
于 2013-02-18T13:29:58.947 回答