mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
17 lines
217 B
PHP
17 lines
217 B
PHP
<?php
|
|
|
|
/**
|
|
* Description of GroupContentReview
|
|
*
|
|
*/
|
|
class ContentReviewOwner extends DataExtension {
|
|
|
|
/**
|
|
*
|
|
* @var array
|
|
*/
|
|
private static $many_many = array(
|
|
"SiteTreeContentReview" => "SiteTree"
|
|
);
|
|
}
|