silverstripe-framework/tests/i18n/_fakewebroot/i18nothermodule/code/i18nTestModuleDecorator.php
ajshort 3a1c2df4e7 API CHANGE: Renamed DataObjectDecorator to DataExtension.
API CHANGE: Renamed LeftAndMainDecorator to LeftAndMainExtension.
MINOR: Replaced all references to decorators with extension.
2011-04-26 11:01:38 +10:00

11 lines
170 B
PHP

<?php
class i18nTestModuleExtension extends DataExtension {
function extraStatics() {
return array(
'db' => array(
'MyExtraField' => 'Varchar'
)
);
}
}
?>