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

10 lines
141 B
PHP
Raw Normal View History

<?php
class i18nOtherModule extends Object {
function mymethod() {
_t(
'i18nOtherModule.ENTITY',
'Other Module Entity'
);
}
}
?>