使用symfony的管理生成器一对多

时间:2011-01-21 10:01:44

标签: php symfony1

我正在使用Symfony的1.4管理生成器,我对一对多的关系有疑问。 如果A有很多B和B一个A,我会在编辑B时看到一个列表框,没关系,但是当我编辑A时我必须添加一个B的列表(有多个选项)。 我有一个解决方案,但如果这是正确的方法,我不会拒绝:我已经通过这种方式修改了A表单:

class AForm extends BaseAForm
{
  public function configure()
  {
    $this->widgetSchema['b_list'] = new sfWidgetFormDoctrineChoice(array('multiple' => true, 'model' => 'B'));
    $this->validatorSchema['b_list'] = new sfValidatorDoctrineChoice(array('multiple' => true, 'model' => 'B', 'required' => false));
  }

  public function updateDefaultsFromObject()
  {
    parent::updateDefaultsFromObject();

    if (isset($this->widgetSchema['b_list']))
    {
      $this->setDefault('b_list', $this->object->B->getPrimaryKeys());
    }

  }

  protected function doSave($con = null)
  {
    $this->saveBsList($con);

    parent::doSave($con);
  }

  public function saveBsList($con = null)
  {
    if (!$this->isValid())
    {
      throw $this->getErrorSchema();
   }

    if (!isset($this->widgetSchema['b_list']))
    {
      // somebody has unset this widget
      return;
    }

    if (null === $con)
    {
      $con = $this->getConnection();
    }

    $existing = $this->object-Bs->getPrimaryKeys();
    $values = $this->getValue('b_list');
    if (!is_array($values))
    {
      $values = array();
    }

    $unlink = array_diff($existing, $values);
    if (count($unlink))
    {
      $this->object->unlink('Bs', array_values($unlink));
    }

    $link = array_diff($values, $existing);
    if (count($link))
      {
      $this->object->link('Bs', array_values($link));
    }
   }
 }

我使用为多对多关系生成的相同代码。 还有更好的方法吗?

由于

编辑:

架构

Agency:
  columns:
    id:
      type:               integer(4)
      primary:            true
      autoincrement:      true
    name:                  { type: string(255), notnull: true }
  relations:
    Consultants:
      refClass:           Consultant

Consultant:
  columns:
    if:
      type:               integer(4)
      primary:            true
      autoincrement:      true
    name:                  { type: string(255), notnull: true }
    ref_agency:           integer(4)
  relations:
    Agence:
      foreignAlias:       Agencies
      local:              ref_agency
      foreign:            id
      class:              Agency

1 个答案:

答案 0 :(得分:0)

您可以安装插件sfFormExtraPlugin并使用sfWidgetFormSelectDoubleList:

 public function configure()
  {
    $this->widgetSchema['b_list']->setOption('renderer_class', 'sfWidgetFormSelectDoubleList');
  }

您不需要任何其他内容。