mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
27 lines
580 B
PHP
27 lines
580 B
PHP
<?php
|
|
|
|
/**
|
|
* Readonly field equivalent for literal HTML
|
|
*
|
|
* Unlike HTMLEditorField_Readonly, does not processs shortcodes
|
|
*/
|
|
class HTMLReadonlyField extends ReadonlyField {
|
|
private static $casting = [
|
|
'Value' => 'HTMLFragment',
|
|
'ValueEntities' => 'HTMLFragment',
|
|
];
|
|
|
|
public function Field($properties = array()) {
|
|
return $this->renderWith($this->getTemplates());
|
|
}
|
|
|
|
/**
|
|
* Return value with all values encoded in html entities
|
|
*
|
|
* @return string Raw HTML
|
|
*/
|
|
public function ValueEntities() {
|
|
return htmlentities($this->Value(), ENT_COMPAT, 'UTF-8');
|
|
}
|
|
}
|