mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
7086f2ea3a
* BUGFIX many many through not sorting by join table * #8534 added docs to support many many sorting fix * #8534 added test cases for many_many default sorting
23 lines
480 B
PHP
23 lines
480 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class FallbackLocale extends DataObject implements TestOnly
|
|
{
|
|
private static $db = [
|
|
'Sort' => 'Int',
|
|
];
|
|
|
|
private static $has_one = [
|
|
'Parent' => Locale::class,
|
|
'Locale' => Locale::class,
|
|
];
|
|
|
|
private static $table_name = 'ManyManyThroughTest_FallbackLocale';
|
|
|
|
private static $default_sort = 'Sort';
|
|
}
|