D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ltfsolutionsco
/
www
/
wp-content
/
plugins
/
wp-simple-galleries
/
admin
/
Filename :
options-sanitize.php
back
Copy
<?php /* Text */ add_filter( 'wpsg_of_sanitize_text', 'sanitize_text_field' ); /* Textarea */ function wpsg_of_sanitize_textarea($input) { global $allowedposttags; $output = wp_kses( $input, $allowedposttags); return $output; } add_filter( 'wpsg_of_sanitize_textarea', 'wpsg_of_sanitize_textarea' ); /* Info */ add_filter( 'wpsg_of_sanitize_info', 'wpsg_of_sanitize_allowedposttags' ); /* Select */ add_filter( 'wpsg_of_sanitize_select', 'wpsg_of_sanitize_enum', 10, 2); /* Radio */ add_filter( 'wpsg_of_sanitize_radio', 'wpsg_of_sanitize_enum', 10, 2); /* Images */ add_filter( 'wpsg_of_sanitize_images', 'wpsg_of_sanitize_enum', 10, 2); /* Checkbox */ function wpsg_of_sanitize_checkbox( $input ) { if ( $input ) { $output = "1"; } else { $output = "0"; } return $output; } add_filter( 'wpsg_of_sanitize_checkbox', 'wpsg_of_sanitize_checkbox' ); /* Multicheck */ function wpsg_of_sanitize_multicheck( $input, $option ) { $output = ''; if ( is_array( $input ) ) { foreach( $option['options'] as $key => $value ) { $output[$key] = "0"; } foreach( $input as $key => $value ) { if ( array_key_exists( $key, $option['options'] ) && $value ) { $output[$key] = "1"; } } } return $output; } add_filter( 'wpsg_of_sanitize_multicheck', 'wpsg_of_sanitize_multicheck', 10, 2 ); /* Color Picker */ add_filter( 'wpsg_of_sanitize_color', 'wpsg_of_sanitize_hex' ); /* Uploader */ function wpsg_of_sanitize_upload( $input ) { $output = ''; $filetype = wp_check_filetype($input); if ( $filetype["ext"] ) { $output = $input; } return $output; } add_filter( 'wpsg_of_sanitize_upload', 'wpsg_of_sanitize_upload' ); /* Allowed Tags */ function wpsg_of_sanitize_allowedtags($input) { global $allowedtags; $output = wpautop(wp_kses( $input, $allowedtags)); return $output; } add_filter( 'wpsg_of_sanitize_info', 'wpsg_of_sanitize_allowedtags' ); /* Allowed Post Tags */ function wpsg_of_sanitize_allowedposttags($input) { global $allowedposttags; $output = wpautop(wp_kses( $input, $allowedposttags)); return $output; } add_filter( 'wpsg_of_sanitize_info', 'wpsg_of_sanitize_allowedposttags' ); /* Check that the key value sent is valid */ function wpsg_of_sanitize_enum( $input, $option ) { $output = ''; if ( array_key_exists( $input, $option['options'] ) ) { $output = $input; } return $output; } /* Background */ function wpsg_of_sanitize_background( $input ) { $output = wp_parse_args( $input, array( 'color' => '', 'image' => '', 'repeat' => 'repeat', 'position' => 'top center', 'attachment' => 'scroll' ) ); $output['color'] = apply_filters( 'wpsg_of_sanitize_hex', $input['color'] ); $output['image'] = apply_filters( 'wpsg_of_sanitize_upload', $input['image'] ); $output['repeat'] = apply_filters( 'wpsg_of_background_repeat', $input['repeat'] ); $output['position'] = apply_filters( 'wpsg_of_background_position', $input['position'] ); $output['attachment'] = apply_filters( 'wpsg_of_background_attachment', $input['attachment'] ); return $output; } add_filter( 'wpsg_of_sanitize_background', 'wpsg_of_sanitize_background' ); function wpsg_of_sanitize_background_repeat( $value ) { $recognized = wpsg_of_recognized_background_repeat(); if ( array_key_exists( $value, $recognized ) ) { return $value; } return apply_filters( 'wpsg_of_default_background_repeat', current( $recognized ) ); } add_filter( 'wpsg_of_background_repeat', 'wpsg_of_sanitize_background_repeat' ); function wpsg_of_sanitize_background_position( $value ) { $recognized = wpsg_of_recognized_background_position(); if ( array_key_exists( $value, $recognized ) ) { return $value; } return apply_filters( 'wpsg_of_default_background_position', current( $recognized ) ); } add_filter( 'wpsg_of_background_position', 'wpsg_of_sanitize_background_position' ); function wpsg_of_sanitize_background_attachment( $value ) { $recognized = wpsg_of_recognized_background_attachment(); if ( array_key_exists( $value, $recognized ) ) { return $value; } return apply_filters( 'wpsg_of_default_background_attachment', current( $recognized ) ); } add_filter( 'wpsg_of_background_attachment', 'wpsg_of_sanitize_background_attachment' ); /* Typography */ function wpsg_of_sanitize_typography( $input ) { $output = wp_parse_args( $input, array( 'size' => '', 'face' => '', 'style' => '', 'color' => '' ) ); $output['size'] = apply_filters( 'wpsg_of_font_size', $output['size'] ); $output['face'] = apply_filters( 'wpsg_of_font_face', $output['face'] ); $output['style'] = apply_filters( 'wpsg_of_font_style', $output['style'] ); $output['color'] = apply_filters( 'wpsg_of_color', $output['color'] ); return $output; } add_filter( 'wpsg_of_sanitize_typography', 'wpsg_of_sanitize_typography' ); function wpsg_of_sanitize_font_size( $value ) { $recognized = wpsg_of_recognized_font_sizes(); $value = preg_replace('/px/','', $value); if ( in_array( (int) $value, $recognized ) ) { return (int) $value; } return (int) apply_filters( 'wpsg_of_default_font_size', $recognized ); } add_filter( 'wpsg_of_font_face', 'wpsg_of_sanitize_font_face' ); function wpsg_of_sanitize_font_style( $value ) { $recognized = wpsg_of_recognized_font_styles(); if ( array_key_exists( $value, $recognized ) ) { return $value; } return apply_filters( 'wpsg_of_default_font_style', current( $recognized ) ); } add_filter( 'wpsg_of_font_style', 'wpsg_of_sanitize_font_style' ); function wpsg_of_sanitize_font_face( $value ) { $recognized = wpsg_of_recognized_font_faces(); if ( array_key_exists( $value, $recognized ) ) { return $value; } return apply_filters( 'wpsg_of_default_font_face', current( $recognized ) ); } add_filter( 'wpsg_of_font_face', 'wpsg_of_sanitize_font_face' ); /** * Get recognized background repeat settings * * @return array * */ function wpsg_of_recognized_background_repeat() { $default = array( 'no-repeat' => 'No Repeat', 'repeat-x' => 'Repeat Horizontally', 'repeat-y' => 'Repeat Vertically', 'repeat' => 'Repeat All', ); return apply_filters( 'wpsg_of_recognized_background_repeat', $default ); } /** * Get recognized background positions * * @return array * */ function wpsg_of_recognized_background_position() { $default = array( 'top left' => 'Top Left', 'top center' => 'Top Center', 'top right' => 'Top Right', 'center left' => 'Middle Left', 'center center' => 'Middle Center', 'center right' => 'Middle Right', 'bottom left' => 'Bottom Left', 'bottom center' => 'Bottom Center', 'bottom right' => 'Bottom Right' ); return apply_filters( 'wpsg_of_recognized_background_position', $default ); } /** * Get recognized background attachment * * @return array * */ function wpsg_of_recognized_background_attachment() { $default = array( 'scroll' => 'Scroll Normally', 'fixed' => 'Fixed in Place' ); return apply_filters( 'wpsg_of_recognized_background_attachment', $default ); } /** * Sanitize a color represented in hexidecimal notation. * * @param string Color in hexidecimal notation. "#" may or may not be prepended to the string. * @param string The value that this function should return if it cannot be recognized as a color. * @return string * */ function wpsg_of_sanitize_hex( $hex, $default = '' ) { if ( wpsg_of_validate_hex( $hex ) ) { return $hex; } return $default; } /** * Get recognized font sizes. * * Returns an indexed array of all recognized font sizes. * Values are integers and represent a range of sizes from * smallest to largest. * * @return array */ function wpsg_of_recognized_font_sizes() { $sizes = range( 9, 71 ); $sizes = apply_filters( 'wpsg_of_recognized_font_sizes', $sizes ); $sizes = array_map( 'absint', $sizes ); return $sizes; } /** * Get recognized font faces. * * Returns an array of all recognized font faces. * Keys are intended to be stored in the database * while values are ready for display in in html. * * @return array * */ function wpsg_of_recognized_font_faces() { $default = array( 'arial' => 'Arial', 'verdana' => 'Verdana, Geneva', 'trebuchet' => 'Trebuchet', 'georgia' => 'Georgia', 'times' => 'Times New Roman', 'tahoma' => 'Tahoma, Geneva', 'palatino' => 'Palatino', 'helvetica' => 'Helvetica*' ); return apply_filters( 'wpsg_of_recognized_font_faces', $default ); } /** * Get recognized font styles. * * Returns an array of all recognized font styles. * Keys are intended to be stored in the database * while values are ready for display in in html. * * @return array * */ function wpsg_of_recognized_font_styles() { $default = array( 'normal' => 'Normal', 'italic' => 'Italic', 'bold' => 'Bold', 'bold italic' => 'Bold Italic' ); return apply_filters( 'wpsg_of_recognized_font_styles', $default ); } /** * Is a given string a color formatted in hexidecimal notation? * * @param string Color in hexidecimal notation. "#" may or may not be prepended to the string. * @return bool * */ function wpsg_of_validate_hex( $hex ) { $hex = trim( $hex ); /* Strip recognized prefixes. */ if ( 0 === strpos( $hex, '#' ) ) { $hex = substr( $hex, 1 ); } elseif ( 0 === strpos( $hex, '%23' ) ) { $hex = substr( $hex, 3 ); } /* Regex match. */ if ( 0 === preg_match( '/^[0-9a-fA-F]{6}$/', $hex ) ) { return false; } else { return true; } }
Name
Size
Last Modified
Owner
Permissions
Actions
css
Dir
May 15 2023 2:21:53
ltfsolutionsco
0755
images
Dir
May 15 2023 2:21:53
ltfsolutionsco
0755
js
Dir
May 15 2023 2:21:53
ltfsolutionsco
0755
.htaccess
0.193
KB
June 03 2023 11:59:56
ltfsolutionsco
0644
options-framework.php
11.917
KB
January 07 2015 6:57:44
ltfsolutionsco
0755
options-interface.php
15.446
KB
January 07 2015 6:57:44
ltfsolutionsco
0755
options-medialibrary-uploader.php
9.086
KB
January 07 2015 6:57:44
ltfsolutionsco
0755
options-sanitize.php
9.242
KB
January 07 2015 6:57:44
ltfsolutionsco
0755
options.php
5.56
KB
January 07 2015 6:57:44
ltfsolutionsco
0755
2017 © D7net | D704T team