Is there a method I can call to obtain the name of all the mapped subclasses of an entity?

link|improve this question

66% accept rate
Not in a straightforward way. Can you give some info on the underlying problem that needs solving? – Gerry Nov 8 '11 at 9:38
feedback

2 Answers

Is this what you want:

$relations = Doctrine_Core::getTable('<CLASS_NAME>')->getRelations();

foreach($relations as $relation)
  echo $relation->getClass();
link|improve this answer
Not relations, subclasses. As in inheritance. – Omega Nov 7 '11 at 19:58
feedback
up vote 0 down vote accepted

Do $tableClass->getOption("subclasses")

Although this will only work for types of inheritance where there is a discriminator map. Most notably, you won't get it with concrete table inheritance.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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