mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
28 lines
746 B
PHP
28 lines
746 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\DataListTest;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class ManyManyThroughEagerLoadObject extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'ManyManyThroughEagerLoadObject';
|
|
|
|
private static $db = [
|
|
'Title' => 'Varchar'
|
|
];
|
|
|
|
private static $many_many = [
|
|
'ManyManyThroughSubEagerLoadObjects' => [
|
|
'through' => ManyManyThroughEagerLoadObjectManyManyThroughSubEagerLoadObject::class,
|
|
'from' => 'ManyManyThroughEagerLoadObject',
|
|
'to' => 'ManyManyThroughSubEagerLoadObject',
|
|
]
|
|
];
|
|
|
|
private static $belongs_many_many = [
|
|
'EagerLoadObjects' => EagerLoadObject::class
|
|
];
|
|
}
|