Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8235643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T18:52:40+00:00 2026-06-07T18:52:40+00:00

I am using the sfWidgetFormInputFileEditable widget for my users to upload images. I would

  • 0

I am using the sfWidgetFormInputFileEditable widget for my users to upload images.

I would like to see if there’s a way to alter the way it works be default. When a user is adding a “new” object, I would like for it to show a generic picture, and when it’s an “edit” then it can show the existing pic. I tried writing a PHP conditional statement but that’s not working for me because when it’s a “new” item I can’t pull the parameter “getPicture1” because it doesn’t exist.

My widget currently:

$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>',
));
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T18:52:41+00:00Added an answer on June 7, 2026 at 6:52 pm

    You have two options (the second one is more easy).

    First option: create your own sfWidgetFormInputFileEditable and extends the original.

    In a file 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');
        }
      }
    }
    

    Then you need to call it:

    $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>',
    ));
    

    Second option: check if the object is new then use the default image.

    $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>',
    ));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Microsoft SQL Server 2005, is there any way to see when a table
using this http://bl.ocks.org/950642 we can see how to add images to nodes, the question
Using Rails 3.2.0 with haml and sass: I Would like to link an external
I need to upload images using symfony, but ive not been able to do
Using Jenkins or Hudson I would like to create a pipeline of builds with
Using the opencart image manager how would I set the upload to automatically remove:
Using C# and System.Data.SqlClient, is there a way to retrieve a list of parameters
Using EXTJS4, I have created a custom grid. I would like one column to
Using SQL Server 2008 R2 we are looking for a way to select the
I'm using Symfony 1.4.4 and Doctrine and I need to upload an image on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.