assets
2 years ago
interfaces
2 years ago
traits
2 years ago
abs-integer-sanitizer.php
2 years ago
abs-number-sanitizer.php
2 years ago
custom-sanitizer.php
2 years ago
email-sanitizer.php
2 years ago
integer-sanitizer.php
2 years ago
key-sanitizer.php
2 years ago
module.php
2 years ago
number-sanitizer.php
2 years ago
text-sanitizer.php
2 years ago
textarea-sanitizer.php
2 years ago
title-sanitizer.php
2 years ago
url-sanitizer.php
2 years ago
user-sanitizer.php
2 years ago
custom-sanitizer.php
38 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Modules\Sanitize_Value; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | use JFB_Modules\Block_Parsers\Field_Data_Parser; |
| 12 | use JFB_Modules\Sanitize_Value\Interfaces\Value_Sanitizer_It; |
| 13 | use JFB_Modules\Sanitize_Value\Interfaces\Value_Sanitizer_Settings_It; |
| 14 | use JFB_Modules\Sanitize_Value\Traits\Value_Sanitizer_Settings_Trait; |
| 15 | |
| 16 | class Custom_Sanitizer implements Value_Sanitizer_It, Value_Sanitizer_Settings_It { |
| 17 | |
| 18 | use Value_Sanitizer_Settings_Trait; |
| 19 | |
| 20 | const CALLBACK_PREF = 'jet_fb_sv_'; |
| 21 | |
| 22 | public function rep_item_id() { |
| 23 | return 'custom'; |
| 24 | } |
| 25 | |
| 26 | public function do_sanitize( Field_Data_Parser $parser ) { |
| 27 | $func_name = $this->get_setting( 'callback' ); |
| 28 | |
| 29 | if ( ! $func_name || |
| 30 | ! function_exists( self::CALLBACK_PREF . $func_name ) |
| 31 | ) { |
| 32 | return; |
| 33 | } |
| 34 | |
| 35 | call_user_func( self::CALLBACK_PREF . $func_name, $parser ); |
| 36 | } |
| 37 | } |
| 38 |