StrippedRawValue.php 267 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace ACP\Export\Model; /** * Exportability model for outputting the column's raw value, but with stripped HTML tags */ class StrippedRawValue extends RawValue { public function get_value( $id ) { return strip_tags( parent::get_value( $id ) ); } }