mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
21 lines
338 B
PHP
21 lines
338 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Forms\HTMLEditor;
|
||
|
|
||
|
use SilverStripe\Forms\HTMLReadonlyField;
|
||
|
|
||
|
/**
|
||
|
* Readonly version of an {@link HTMLEditorField}.
|
||
|
*/
|
||
|
class HTMLEditorField_Readonly extends HTMLReadonlyField
|
||
|
{
|
||
|
private static $casting = [
|
||
|
'Value' => 'HTMLText',
|
||
|
];
|
||
|
|
||
|
public function Type()
|
||
|
{
|
||
|
return 'htmleditorfield readonly';
|
||
|
}
|
||
|
}
|