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

  • SEARCH
  • Home
  • 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 8483491
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T20:07:08+00:00 2026-06-10T20:07:08+00:00

Is it possible to validate a property of a model class dependent on another

  • 0

Is it possible to validate a property of a model class dependent on another property of the same class?

For example, I have this class:

class Conference
{
    /** $startDate datetime */
    protected $startDate;

    /** $endDate datetime */
    protected $endDate;
}

and I want that Symfony 2.0 validates, that $startDate has to be after $endDate.

Is this possible by annotations or do I have to do this manually?

  • 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-10T20:07:10+00:00Added an answer on June 10, 2026 at 8:07 pm

    Yes with the callback validator: http://symfony.com/doc/current/reference/constraints/Callback.html

    On symfony 2.0:

    use Symfony\Component\Validator\Constraints as Assert;
    use Symfony\Component\Validator\ExecutionContext;
    
    /**
     * @Assert\Callback(methods={"isDateValid"})
     */
    class Conference
    {
    
        // Properties, getter, setter ...
    
        public function isDateValid(ExecutionContext $context)
        {
            if ($this->startDate->getTimestamp() > $this->endDate->getTimestamp()) {
                    $propertyPath = $context->getPropertyPath() . '.startDate';
                    $context->setPropertyPath($propertyPath);
                    $context->addViolation('The starting date must be anterior than the ending date !', array(), null);
            }
        }
    }
    

    On symfony master version:

        public function isDateValid(ExecutionContext $context)
        {
            if ($this->startDate->getTimestamp() > $this->endDate->getTimestamp()) {
                $context->addViolationAtSubPath('startDate', 'The starting date must be anterior than the ending date !', array(), null);
            }
        }
    

    Here I choose to show the error message on the startDate field.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have my model defined like this: class Animal < ActiveRecord::Base mount_uploader :picture, PictureUploader
With FluentValidation, is it possible to validate a string as a parseable DateTime without
I have model: [Validator(typeof(RegisterValidator))] public class RegisterModel { public string Name { get; set;
I am not sure if this is possible, but I have a scenario where
Possible Duplicate: Validate a field depending on another field value in Symfony How can
Is it possible to validate XML against a Serializable class rather than and XSD?
I have two Dictionary<string, byte> properties in my model that should validate properly with
I have the following property in my Model : [StringLength(100, ErrorMessage = Must be
I have an XML property that has two possible value: discardOld and discardNew (not
Possible Duplicate: Validate HWND using Win32 API How can I determent if the window

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.