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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property string $Title
|
|
|
|
* @method ManyManyThroughList Objects()
|
|
|
|
*/
|
|
|
|
class Item extends DataObject implements TestOnly
|
|
|
|
{
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $table_name = 'ManyManyThroughListTest_Item';
|
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 $belongs_many_many = [
|
2018-03-21 22:26:25 +01:00
|
|
|
// Intentionally omit parent `.Items` specifier to ensure it's not mandatory
|
|
|
|
'Objects' => TestObject::class,
|
2016-12-16 05:34:21 +01:00
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|