mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
7 lines
130 B
PHP
7 lines
130 B
PHP
|
<?php
|
||
|
class DMSSiteTreeExtension extends DataExtension {
|
||
|
|
||
|
static $belongs_many_many = array(
|
||
|
'Documents' => 'DMSDocument'
|
||
|
);
|
||
|
}
|