silverstripe-framework/tests/i18n/_fakewebroot/i18nothermodule/code/i18nOtherModule.php

12 lines
176 B
PHP
Raw Normal View History

<?php
use SilverStripe\Core\Object;
class i18nOtherModule extends Object {
public function mymethod() {
_t(
2014-08-15 08:53:05 +02:00
'i18nOtherModule.ENTITY',
'Other Module Entity'
);
}
}