mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 15:05:50 +00:00
10 lines
141 B
PHP
10 lines
141 B
PHP
|
<?php
|
||
|
class i18nOtherModule extends Object {
|
||
|
function mymethod() {
|
||
|
_t(
|
||
|
'i18nOtherModule.ENTITY',
|
||
|
'Other Module Entity'
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
?>
|