silverstripe-framework/tests/php/i18n/i18nTest/_fakewebroot/i18ntestmodule/code/subfolder/i18nTestSubModule.php
2016-11-23 19:25:12 +13:00

11 lines
194 B
PHP

<?php
use SilverStripe\Core\Object;
class i18nTestSubModule extends Object {
public function __construct() {
_t('i18nTestModule.OTHERENTITY', 'Other Entity');
parent::__construct();
}
}