2017-06-21 06:29:40 +02:00
|
|
|
<?php
|
|
|
|
|
2017-08-09 04:53:38 +02:00
|
|
|
namespace SilverStripe\CMS\Tests\Model;
|
2017-08-09 03:25:12 +02:00
|
|
|
|
2017-06-21 06:29:40 +02:00
|
|
|
use SilverStripe\Dev\TestOnly;
|
2017-08-09 03:25:12 +02:00
|
|
|
use Page;
|
|
|
|
|
2017-06-21 06:29:40 +02:00
|
|
|
class SiteTreeTest_ClassD extends Page implements TestOnly
|
|
|
|
{
|
2017-08-09 04:53:38 +02:00
|
|
|
private static $table_name = 'SiteTreeTest_ClassD';
|
|
|
|
|
2017-06-21 06:29:40 +02:00
|
|
|
// Only allows this class, no children classes
|
2017-08-09 04:53:38 +02:00
|
|
|
private static $allowed_children = [
|
|
|
|
'*' . SiteTreeTest_ClassC::class,
|
|
|
|
];
|
2017-06-21 06:29:40 +02:00
|
|
|
|
|
|
|
private static $extensions = [
|
2017-08-09 04:53:38 +02:00
|
|
|
SiteTreeTest_ExtensionA::class,
|
|
|
|
SiteTreeTest_ExtensionB::class,
|
2017-06-21 06:29:40 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
public $canEditValue = null;
|
|
|
|
|
|
|
|
public function canEdit($member = null)
|
|
|
|
{
|
|
|
|
return isset($this->canEditValue)
|
|
|
|
? $this->canEditValue
|
|
|
|
: parent::canEdit($member);
|
|
|
|
}
|
|
|
|
}
|