你有兩個選擇(第二個是更容易)。
第一個選項:創建自己的sfWidgetFormInputFileEditable
並擴展原來的。
在文件lib/widget/myWidgetFormInputFileEditable.class.php
:
class myWidgetFormInputFileEditable extends sfWidgetFormInputFileEditable
{
protected function getFileAsTag($attributes)
{
if ($this->getOption('is_image'))
{
if (false !== $src = $this->getOption('file_src'))
{
// check if the given src is empty of image (like check if it has a .jpg at the end)
if ('/uploads/car/' === $src)
{
$src = '/uploads/car/default_image.jpg';
}
$this->renderTag('img', array_merge(array('src' => $src), $attributes))
}
}
else
{
return $this->getOption('file_src');
}
}
}
然後你需要調用它:
$this->widgetSchema['picture1'] = new myWidgetFormInputFileEditable(array(
'label' => ' ',
'file_src' => '/uploads/car/'.$this->getObject()->getPicture1(),
'is_image' => true,
'edit_mode' => true,
'template' => '<div>%file%<br />%input%</div>',
));
第二個選項:檢查如果對象是新的,然後使用默認圖像。
$file_src = $this->getObject()->getPicture1();
if ($this->getObject()->isNew())
{
$file_src = 'default_image.jpg';
}
$this->widgetSchema['picture1'] = new sfWidgetFormInputFileEditable(array(
'label' => ' ',
'file_src' => '/uploads/car/'.$file_src,
'is_image' => true,
'edit_mode' => true,
'template' => '<div>%file%<br />%input%</div>',
));
來源
2012-07-11 10:41:47
j0k
謝謝j0k !!你是一個拯救生命的人。第二個選項更多的是我要去的,但我沒有意識到你可以在form.class文件中寫入「if」語句。再次感謝! – djcloud23 2012-07-11 11:11:53