mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
23a5154c97
* ENH: Update reorderItems() to use ORM where possible * Increase test coverage of orderable rows
34 lines
797 B
PHP
34 lines
797 B
PHP
<?php
|
|
|
|
namespace Symbiote\GridFieldExtensions\Tests\Stub;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\ORM\ManyManyThroughList;
|
|
use SilverStripe\Versioned\Versioned;
|
|
|
|
/**
|
|
* @method ManyManyThroughList|ThroughIntermediaryVersioned Belongings()
|
|
* @mixin Versioned
|
|
*/
|
|
class ThroughDefinerVersioned extends DataObject implements TestOnly
|
|
{
|
|
private static string $table_name = 'ThroughDefinerVersioned';
|
|
|
|
private static array $many_many = [
|
|
'Belongings' => [
|
|
'through' => ThroughIntermediaryVersioned::class,
|
|
'from' => 'Defining',
|
|
'to' => 'Belonging',
|
|
]
|
|
];
|
|
|
|
private static array $owns = [
|
|
'Belongings'
|
|
];
|
|
|
|
private static array $extensions = [
|
|
Versioned::class,
|
|
];
|
|
}
|