silverstripe-framework/tests/php/i18n/i18nTest/TestDataObject.php
Damian Mooyman 8a07c56bdf API Replace i18n message localisation with symfony/translation
API Implement enhanced pluralisation
Remove Zend_Translate and all Zend dependencies from i18n
Deprecated $context from i18n::_t()
Warn on missing default string for i18n::_t()
2017-01-25 17:08:12 +13:00

42 lines
1.0 KiB
PHP

<?php
namespace SilverStripe\i18n\Tests\i18nTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
use SilverStripe\Security\Member;
class TestDataObject extends DataObject implements TestOnly
{
private static $table_name = 'i18nTest_TestDataObject';
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);
$labels['MyProperty'] = _t('i18nTest_DataObject.MyProperty', 'My Property');
return $labels;
}
}