sanitizable.php in Elementor Website Builder – more than just a page builder 3.26.2, at modules/content-sanitizer/interfaces/sanitizable.php
| 1 |
<?php |
| 2 |
namespace Elementor\Modules\ContentSanitizer\Interfaces; |
| 3 |
|
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; // Exit if accessed directly |
| 6 |
} |
| 7 |
|
| 8 |
interface Sanitizable { |
| 9 |
public function sanitize( $content ); |
| 10 |
} |
| 11 |
|