mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
12 lines
188 B
PHP
12 lines
188 B
PHP
<?php
|
|
class FileUploadRole extends DataObjectDecorator{
|
|
function extraStatics() {
|
|
return array(
|
|
'has_one' => array(
|
|
'AFile' => 'File',
|
|
'AImage' => 'Image',
|
|
),
|
|
);
|
|
}
|
|
}
|
|
?>
|