oont-contents/plugins/elementor/modules/content-sanitizer/interfaces/sanitizable.php
2025-02-08 15:10:23 +01:00

10 lines
200 B
PHP

<?php
namespace Elementor\Modules\ContentSanitizer\Interfaces;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
interface Sanitizable {
public function sanitize( $content );
}