我正在使用sfWidgetFormInputFileEditable小部件供我的用户上传图像。
我想看看是否有一种方法可以更改它的默认工作方式。当用户添加"new"对象时,我希望它显示通用图片,而当它是“编辑”时,则可以显示现有图片。我尝试编写PHP条件语句,但是对我来说不起作用,因为当它是"new"项时,由于它不存在,我无法提取参数“getPicture1”。
我的小部件当前:
$this->widgetSchema['picture1'] = new sfWidgetFormInputFileEditable(array(
'label' => ' ',
'file_src' => '/uploads/car/'.$this->getObject()->getPicture1(),
'is_image' => true,
'edit_mode' => true,
'template' => '<div>%file%<br />%input%</div>',
));
最佳答案
您有两个选择(第二个更简单)。
第一个选项:创建您自己的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>',
));