silverstripe-framework/tests/i18n/_fakewebroot/i18ntestmodule/code/subfolder/i18nTestSubModule.php

11 lines
194 B
PHP
Raw Normal View History

<?php
use SilverStripe\Core\Object;
class i18nTestSubModule extends Object {
public function __construct() {
_t('i18nTestModule.OTHERENTITY', 'Other Entity');
2014-08-15 08:53:05 +02:00
parent::__construct();
}
}