Как найти список подклассов для модели propel с конкретным наследованием

Я создаю мини-cms для своей местной благотворительности (да, я знаю, что мог бы использовать проект зубочистки, но они хотят, чтобы пользовательские коды)

Моя схема движения в настоящий момент выглядит так:

<?xml version="1.0" encoding="UTF-8"?>
<database name="sja" defaultIdMethod="native">
    <table name="section">
        <column name="id" type="INTEGER" primaryKey="true" required="true" autoIncrement="true" />
        <column name="title" type="VARCHAR" required="true" />
        <column name="slug" type="VARCHAR" required="true" />
    </table>
    <table name="page">
        <column name="id" type="INTEGER" primaryKey="true" required="true" autoIncrement="true" />
        <column name="title" type="VARCHAR" required="true" />
        <column name="section_id" type="INTEGER" required="true" />
        <foreign-key foreignTable="section">
            <reference local="section_id" foreign="id" />
        </foreign-key>
    </table>
    <table name="static_page">
        <behavior name="concrete_inheritance">
            <parameter name="extends" value="page" />
        </behavior>
        <column name="content" type="LONGVARCHAR" required="true" />
    </table>
    <table name="home_page">
        <behavior name="concrete_inheritance">
            <parameter name="extends" value="page" />
        </behavior>
        <column name="standfirst_title" type="VARCHAR" />
        <column name="standfirst_image" type="VARCHAR" />
        <column name="standfirst_content" type="VARCHAR" />
    </table>

</database>

Я хочу иметь возможность получить список, который будет включать в себя "home_page" и "static_page" - без необходимости создавать его вручную всякий раз, когда я добавляю новый тип страницы.

Есть ли простой способ получить список, подобный этому, или мне нужно написать какой-нибудь волшебный материал с помощью Reflection Classes и т. Д.?

1 ответ

Решение

После того, как тыкал в правильном направлении от #propel на freenode - я придумал это для базовой концепции - пока не проверял его

function getSubClasses()
{
    $map = $this->getDatabaseMap();
    $children = array();
    foreach ($map->getRelations() AS $relation)
    {
        $behaviours = $relation->getRightTable()->getBehaviours();

        if (issset($behaviours['concrete_inheritance']['extends']) AND $behaviours['concrete_inheritance']['extends'] == $this->getDatabaseMap()->getClassName())
        {
            $children[] = $relation->getRightTable()->getClassName();
        }
    }
    return $children;
}
Другие вопросы по тегам