mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
23 lines
511 B
PHP
23 lines
511 B
PHP
|
<?php
|
||
|
|
||
|
namespace Symbiote\GridFieldExtensions\Tests\Stub;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
|
||
|
class PolymorphM2MMapper extends DataObject implements TestOnly
|
||
|
{
|
||
|
private static $table_name = 'TestOnly_PolymorphM2MMapper';
|
||
|
|
||
|
private static $db = [
|
||
|
'Sort' => 'Int'
|
||
|
];
|
||
|
|
||
|
private static $has_one = [
|
||
|
'Parent' => DataObject::class, // PolymorphM2MParent
|
||
|
'Child' => PolymorphM2MChild::class,
|
||
|
];
|
||
|
|
||
|
private static $default_sort = '"Sort" ASC';
|
||
|
}
|