silverstripe-framework/tests/php/i18n/i18nTest/TestObject.php

24 lines
573 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\i18n\Tests\i18nTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\i18n\i18nEntityProvider;
class TestObject implements TestOnly, i18nEntityProvider
2016-10-14 03:30:05 +02:00
{
static $my_translatable_property = "Untranslated";
2016-10-14 03:30:05 +02:00
public static function my_translatable_property()
{
2018-01-16 19:39:30 +01:00
return _t(__CLASS__ . ".my_translatable_property", self::$my_translatable_property);
}
2016-10-14 03:30:05 +02:00
public function provideI18nEntities()
{
return [
2018-01-16 19:39:30 +01:00
__CLASS__ . ".my_translatable_property" => self::$my_translatable_property,
];
}
2016-10-14 03:30:05 +02:00
}