silverstripe-framework/core/model/fieldtypes/HTMLVarchar.php

12 lines
213 B
PHP
Executable File

<?php
/**
* This behaves exactly the same as Varchar but is intended to store HTML content in it.
* The template processor won't escape any HTML content within it
*/
class HTMLVarchar extends Varchar {
}
?>