silverstripe-framework/tests/php/i18n/i18nTest/_fakewebroot/i18nothermodule/code/i18nOtherModule.php
2016-12-19 16:08:19 +13:00

15 lines
217 B
PHP

<?php
use SilverStripe\Core\Object;
class i18nOtherModule extends Object
{
public function mymethod()
{
_t(
'i18nOtherModule.ENTITY',
'Other Module Entity'
);
}
}