mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
c2c75aa9e3
Fix link tracking
19 lines
438 B
PHP
19 lines
438 B
PHP
<?php
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\ValidationException;
|
|
|
|
class CMSMainTest_ClassA extends Page implements TestOnly
|
|
{
|
|
private static $allowed_children = array('CMSMainTest_ClassB');
|
|
|
|
protected function onBeforeWrite()
|
|
{
|
|
parent::onBeforeWrite();
|
|
|
|
if ($this->ClassName !== self::class) {
|
|
throw new ValidationException("Class saved with incorrect ClassName");
|
|
}
|
|
}
|
|
}
|