2017-11-29 03:20:09 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\RestfulServer\Tests\Stubs;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
2018-02-08 04:56:21 +01:00
|
|
|
use SilverStripe\ORM\DataObject;
|
2017-11-29 03:20:09 +01:00
|
|
|
|
|
|
|
class RestfulServerTestAuthor extends DataObject implements TestOnly
|
|
|
|
{
|
|
|
|
private static $api_access = true;
|
|
|
|
|
|
|
|
private static $table_name = 'RestfulServerTestAuthor';
|
|
|
|
|
|
|
|
private static $db = array(
|
|
|
|
'Name' => 'Text',
|
|
|
|
);
|
|
|
|
|
|
|
|
private static $many_many = array(
|
|
|
|
'RelatedPages' => RestfulServerTestPage::class,
|
|
|
|
'RelatedAuthors' => RestfulServerTestAuthor::class,
|
|
|
|
);
|
|
|
|
|
|
|
|
private static $has_many = array(
|
|
|
|
'PublishedPages' => RestfulServerTestPage::class,
|
|
|
|
'Ratings' => RestfulServerTestAuthorRating::class,
|
|
|
|
);
|
|
|
|
|
|
|
|
public function canView($member = null)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|