2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\View\Tests\SSViewerCacheBlockTest;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
2017-03-21 04:22:23 +01:00
|
|
|
use SilverStripe\Versioned\Versioned;
|
2016-10-14 03:30:05 +02:00
|
|
|
|
|
|
|
class VersionedModel extends DataObject implements TestOnly
|
|
|
|
{
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $table_name = 'SSViewerCacheBlockTest_VersionedModel';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
protected $entropy = 'default';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2020-04-20 19:58:09 +02:00
|
|
|
private static $extensions = [
|
2016-12-16 05:34:21 +01:00
|
|
|
Versioned::class
|
2020-04-20 19:58:09 +02:00
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function setEntropy($entropy)
|
|
|
|
{
|
|
|
|
$this->entropy = $entropy;
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
public function Inspect()
|
|
|
|
{
|
|
|
|
return $this->entropy . ' ' . Versioned::get_reading_mode();
|
|
|
|
}
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|