mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
257ff69e32
* API Support many_many through polymorphic relations (from side only) Fixes #7911 Fixes #3136 * Add extra docs and allow optional arguments * ENHANCEMENT Enable quiet to be turned off * BUG Fix issue with manymanythroughlist duplication
31 lines
642 B
PHP
31 lines
642 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\ORM\ManyManyThroughList;
|
|
|
|
/**
|
|
* Basic parent object
|
|
*
|
|
* @property string $Title
|
|
* @method ManyManyThroughList Items()
|
|
*/
|
|
class TestObject extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'ManyManyThroughListTest_Object';
|
|
|
|
private static $db = [
|
|
'Title' => 'Varchar'
|
|
];
|
|
|
|
private static $many_many = [
|
|
'Items' => [
|
|
'through' => JoinObject::class,
|
|
'from' => 'Parent',
|
|
'to' => 'Child',
|
|
]
|
|
];
|
|
}
|