mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e2e32317d6
Also rename ViewableData to ModelData ahead of the template layer lift-and-shift
23 lines
424 B
PHP
23 lines
424 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Model\Tests\ModelDataTest;
|
|
|
|
use SilverStripe\Core\Convert;
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\Model\ModelData;
|
|
|
|
class UnescapedCaster extends ModelData implements TestOnly
|
|
{
|
|
protected $value;
|
|
|
|
public function setValue($value)
|
|
{
|
|
$this->value = $value;
|
|
}
|
|
|
|
public function forTemplate(): string
|
|
{
|
|
return Convert::raw2xml($this->value);
|
|
}
|
|
}
|