2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
|
|
|
class NestTest extends Doctrine_Record
|
|
|
|
{
|
2008-02-04 00:29:57 +03:00
|
|
|
public static function initMetadata($class)
|
2007-09-02 18:24:49 +04:00
|
|
|
{
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->setColumn('name', 'string');
|
|
|
|
$class->hasMany('NestTest as Parents', array('local' => 'child_id',
|
2007-09-02 18:24:49 +04:00
|
|
|
'refClass' => 'NestReference',
|
|
|
|
'foreign' => 'parent_id'));
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->hasMany('NestTest as Children', array('local' => 'parent_id',
|
2007-09-02 18:24:49 +04:00
|
|
|
'refClass' => 'NestReference',
|
|
|
|
'foreign' => 'child_id'));
|
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->hasMany('NestTest as Relatives', array('local' => 'child_id',
|
2007-09-02 18:24:49 +04:00
|
|
|
'refClass' => 'NestReference',
|
|
|
|
'foreign' => 'parent_id',
|
|
|
|
'equal' => true));
|
|
|
|
}
|
|
|
|
}
|