2

我正在使用 Symfony 1.4 sfWidgetFormDoctrineChoice

我已将复选框添加到表单中,从而成功提取模型数据。我想要做的还包括复选框旁边的缩略图以及标题。

$this->setWidget('bulkUploadVideos', new sfWidgetFormDoctrineChoice(array(
    'model' => 'MediaAsset',
    'query' => Doctrine_Query::create()->select('u.url')->from('MediaAsset u')->orderBy('id DESC'),
    'add_empty' => false,
    'multiple' => true,
    'expanded' => true
   )
));

这非常棒地将查询拉入到这样排列的复选框列表中:

⧠ 绿牛仔裤

⧠ 马古先生

⧠ 下垂

在 Media Assets 表中,我还有一个要包含在布局中的图像 url。所以它看起来像这样:

|-img 缩略图-| ⧠ 绿牛仔裤

|-img 缩略图-| ⧠ 马古先生

|-img 缩略图-| ⧠ 下垂

我想也许可以使用格式化程序类,但我没有看到表单有任何变化。

lib/form/formatters/sfWidgetFormSchemaFormatterAllVideos.class.php

<?php 
class sfWidgetFormSchemaFormatterAllVideos extends sfWidgetFormSchemaFormatter {
  protected
    $rowFormat       = "<span class=\"my-label-class\">%label%</span>\n  <span>%error%%field%%help%%hidden_fields%</span>`n",
    $errorRowFormat  = "<span class=\"my-error-class\" colspan=\"2\">\n%errors%</span>\n",
    $helpFormat      = '<br />%help%',
    $decoratorFormat = "<div class='custom-video-layout'>\n  %content%</div>";
}

然后我把它放在我的 MediaAssetsForm.class.php 的底部

public function configure() {
    parent::configure();
...
..
...
$this->getWidgetSchema()->setFormFormatterName('AllVideos');

唉,页面布局看起来完全一样。我是否错误地调用了格式化程序,或者有更简单的方法吗?

顺便说一句,仍然没有回答我如何将表格中的图像 url 查询到每个复选框的输出中的问题。这是我想解决的主要问题。表单中每条记录的缩略图。

4

1 回答 1

4

格式化程序用于渲染整个表单,您需要更改其中一个小部件的渲染。

sfwidgetFormDoctrineChoice有一个renderer将格式化程序作为参数的选项。您需要的是sfWidgetFormSelectCheckbox. 我会做的是:

  1. 创建您自己的类,该类将扩展sfWidgetFormSelectCheckbox该类。例如

    class sfWidgetFormMySelectWithThumbs extends sfWidgetFormSelectCheckbox {
    }
    
  2. 扩展该configure功能,使其采用另一个选项,该选项将保存您的缩略图数组。

    public function configure($options = array(), $arguments = array()) {
        parent::configure($options, $arguments);
    
        $this->addOption('thumbnails', array());
    } 
    
  3. 更改formatChoices功能,使其在复选框前面添加图像(您可以复制和修改原始formatChoices功能)。

    ...
    $sources = $this->getOption('thumbnails');
    ...
    
    $inputs[$id] = array(
        'input' => sprintf('| %s | %s',
            $this->renderTag('img', array('src' => $sources[$key])),
            $this->renderTag('input', array_merge($baseAttributes, $attributes))
        ),
        'label' => $this->renderContentTag('label', self::escapeOnce($option), array('for' => $id)),
    );
    
  4. 在您的小部件中使用格式化程序类:

     $this->setWidget('bulkUploadVideos', new sfWidgetFormDoctrineChoice(array(
        ...
        'renderer' => new sfWidgetFormMySelectWithThumbs(array('thumbnails' => $thumbanils))
        )
    ));
    

    当然,您需要将缩略图列表作为数组检索,其中数组键与用于复选框值的 id 相同,但这应该不是问题。

于 2013-04-15T15:22:59.010 回答