mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\UnsavedRelationListTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\ORM\HasManyList;
|
|
use SilverStripe\ORM\ManyManyList;
|
|
|
|
/**
|
|
* @method HasManyList RelatedObjects()
|
|
* @method HasManyList Children()
|
|
* @method ManyManyList Siblings()
|
|
*/
|
|
class TestObject extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'UnsavedRelationListTest_DataObject';
|
|
|
|
private static $db = array(
|
|
'Name' => 'Varchar',
|
|
);
|
|
|
|
private static $has_one = array(
|
|
'Parent' => TestObject::class,
|
|
'RelatedObject' => DataObject::class
|
|
);
|
|
|
|
private static $has_many = array(
|
|
'Children' => 'SilverStripe\\ORM\\Tests\\UnsavedRelationListTest\\TestObject.Parent',
|
|
'RelatedObjects' => 'SilverStripe\\ORM\\Tests\\UnsavedRelationListTest\\TestObject.RelatedObject'
|
|
);
|
|
|
|
private static $many_many = array(
|
|
'Siblings' => TestObject::class,
|
|
);
|
|
|
|
private static $many_many_extraFields = array(
|
|
'Siblings' => array(
|
|
'Number' => 'Int',
|
|
),
|
|
);
|
|
}
|