2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\i18n\Tests\i18nTest;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
use SilverStripe\Security\Member;
|
|
|
|
|
|
|
|
class TestDataObject extends DataObject implements TestOnly
|
|
|
|
{
|
2017-01-18 04:58:48 +01:00
|
|
|
private static $table_name = 'i18nTest_TestDataObject';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $db = array(
|
|
|
|
'MyProperty' => 'Varchar',
|
|
|
|
'MyUntranslatedProperty' => 'Text'
|
|
|
|
);
|
|
|
|
|
|
|
|
private static $has_one = array(
|
|
|
|
'HasOneRelation' => Member::class
|
|
|
|
);
|
|
|
|
|
|
|
|
private static $has_many = array(
|
|
|
|
'HasManyRelation' => Member::class
|
|
|
|
);
|
|
|
|
|
|
|
|
private static $many_many = array(
|
|
|
|
'ManyManyRelation' => Member::class
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param bool $includerelations a boolean value to indicate if the labels returned include relation fields
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function fieldLabels($includerelations = true)
|
|
|
|
{
|
|
|
|
$labels = parent::fieldLabels($includerelations);
|
2018-01-16 19:39:30 +01:00
|
|
|
$labels['MyProperty'] = _t(__CLASS__ . '.MyProperty', 'My Property');
|
2016-12-16 05:34:21 +01:00
|
|
|
|
|
|
|
return $labels;
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|