| 1 | <?php |
||
| 8 | class HTMLReadonlyField extends ReadonlyField { |
||
| 9 | private static $casting = [ |
||
| 10 | 'Value' => 'HTMLFragment', |
||
| 11 | 'ValueEntities' => 'HTMLFragment', |
||
| 12 | ]; |
||
| 13 | |||
| 14 | public function Field($properties = array()) { |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Return value with all values encoded in html entities |
||
| 20 | * |
||
| 21 | * @return string Raw HTML |
||
| 22 | */ |
||
| 23 | public function ValueEntities() { |
||
| 26 | } |
||
| 27 |