File "Text_Formatter.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Events/Custom_Tables/V1/Models/Formatters/Text_Formatter.php
File size: 292 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace TEC\Events\Custom_Tables\V1\Models\Formatters;


class Text_Formatter implements Formatter {
	public function format( $value ) {
		if ( empty( $value ) ) {
			return '';
		}

		return trim( sanitize_text_field( $value ) );
	}

	public function prepare() {
		return '%s';
	}
}