PluginProbe
Adminify – White Label, Admin Menu Editor, Login Customizer / 4.3.0
Adminify – White Label, Admin Menu Editor, Login Customizer v4.3.0
4.3.1 4.3.0 4.2.26 4.2.25 4.2.24 4.2.23 4.2.22 4.2.21 4.2.20 4.2.19 4.2.18 4.2.17 4.2.16 4.2.15 4.2.14 4.2.13 4.2.12 4.2.11 4.2.10 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 4.1.17 All 164 releases
adminify / Libs / adminify-framework / functions / sanitize.php

sanitize.php in Adminify – White Label, Admin Menu Editor, Login Customizer 4.3.0, at Libs/adminify-framework/functions/sanitize.php

30 lines 554 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access directly.
2 /**
3 *
4 * Sanitize
5 * Replace letter a to letter b
6 *
7 * @since 1.0.0
8 * @version 1.0.0
9 *
10 */
11 if ( ! function_exists( 'adminify_sanitize_replace_a_to_b' ) ) {
12 function adminify_sanitize_replace_a_to_b( $value ) {
13 return str_replace( 'a', 'b', $value );
14 }
15 }
16
17 /**
18 *
19 * Sanitize title
20 *
21 * @since 1.0.0
22 * @version 1.0.0
23 *
24 */
25 if ( ! function_exists( 'adminify_sanitize_title' ) ) {
26 function adminify_sanitize_title( $value ) {
27 return sanitize_title( $value );
28 }
29 }
30