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;
|
|
|
|
use SilverStripe\ORM\Versioning\Versioned;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Basic parent object
|
|
|
|
*
|
|
|
|
* @property string $Title
|
2016-12-16 05:34:21 +01:00
|
|
|
* @method ManyManyThroughList Items()
|
|
|
|
* @mixin Versioned
|
2016-10-14 03:30:05 +02:00
|
|
|
*/
|
|
|
|
class VersionedObject extends DataObject implements TestOnly
|
|
|
|
{
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $table_name = 'ManyManyThroughListTest_VersionedObject';
|
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 $extensions = [
|
|
|
|
Versioned::class,
|
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $owns = [
|
|
|
|
'Items', // Should automatically own both mapping and child records
|
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $many_many = [
|
|
|
|
'Items' => [
|
|
|
|
'through' => VersionedJoinObject::class,
|
|
|
|
'from' => 'Parent',
|
|
|
|
'to' => 'Child',
|
|
|
|
],
|
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|