2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
use SilverStripe\ORM\ManyManyThroughList;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Basic parent object
|
|
|
|
*
|
|
|
|
* @property string $Title
|
2018-03-21 22:26:25 +01:00
|
|
|
* @method ManyManyThroughList Items()
|
2016-10-14 03:30:05 +02:00
|
|
|
*/
|
|
|
|
class TestObject extends DataObject implements TestOnly
|
|
|
|
{
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $table_name = 'ManyManyThroughListTest_Object';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $db = [
|
|
|
|
'Title' => 'Varchar'
|
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $many_many = [
|
|
|
|
'Items' => [
|
|
|
|
'through' => JoinObject::class,
|
|
|
|
'from' => 'Parent',
|
|
|
|
'to' => 'Child',
|
|
|
|
]
|
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|