Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Symfony application configured with Doctrine, and I have designed a one-to-many relationship between two models: a Item belongs to a Customer, which is an alias for sfGuardUser.

Let's say that there are certain situations where an item does not have any customer. To test this I'm trying to make this comparison:

$customer = $this->getCustomer();
if ( $customer ) {
  return $customer->getNbInvoices();
}
else {
  return 'n/a';
}

However $this->getCustomer() does not return null or any other 'false' value to compare with, and the foreign key is set to NULL in the database.

How can I compare an object that does not store an actual value in the database?

share|improve this question

2 Answers

up vote 2 down vote accepted

I think that $this->getCustomer() return a blank instance of customer doctrine_record. You can test if the customer has an ID, or you can use a method of doctrine_record class exists() :

if($customer->exists()){
 code...
}

http://www.doctrine-project.org/api/orm/1.2/doctrine/doctrine_record.html#exists%28%29

share|improve this answer

how about

if ($this->relatedExists('Customer') {
   return $this['Customer']->getNbInvoices();
} else {
  return 'n/a';
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.