mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
34 lines
784 B
PHP
34 lines
784 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms\Tests\FormScaffolderTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class ParentModel extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'FormScaffolderTest_ParentModel';
|
|
|
|
private static $db = [
|
|
'Title' => 'Varchar',
|
|
];
|
|
|
|
private static $has_one = [
|
|
'Child' => Child::class,
|
|
'ChildPolymorphic' => DataObject::class,
|
|
];
|
|
|
|
private static $has_many = [
|
|
'ChildrenHasMany' => Child::class . '.Parent',
|
|
];
|
|
|
|
private static $many_many = [
|
|
'ChildrenManyMany' => Child::class,
|
|
'ChildrenManyManyThrough' => [
|
|
'through' => ParentChildJoin::class,
|
|
'from' => 'Parent',
|
|
'to' => 'Child',
|
|
]
|
|
];
|
|
}
|