Current File : /var/www/html/blog/wp-content/plugins/blogsqode-posts/admin/class-blogsqode-admin-settings.php |
<?php
/**
* Blogsqode Admin Settings Class
*
* @package Blogsqode\Admin
* @version 2.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! class_exists( 'Blogsqode_Admin_Settings', false ) ) :
/**
* Blogsqode_Admin_Settings Class.
*/
class Blogsqode_Admin_Settings {
/**
* Setting pages.
*
* @var array
*/
private static $settings = array();
/**
* Error messages.
*
* @var array
*/
private static $errors = array();
/**
* Update messages.
*
* @var array
*/
private static $messages = array();
/**
* Include the settings page classes.
*/
public static function get_settings_pages() {
if ( empty( self::$settings ) ) {
$settings = array();
include_once dirname( __FILE__ ) . '/settings/class-blogsqode-setting-page.php';
$settings[] = include __DIR__ . '/settings/class-blogsqode-setting-pro-version.php';
$settings[] = include __DIR__ . '/settings/class-blogsqode-setting-general.php';
$settings[] = include __DIR__ . '/settings/class-blogsqode-setting-pagination.php';
$settings[] = include __DIR__ . '/settings/class-blogsqode-setting-singleblog.php';
self::$settings = apply_filters( 'blogsqode_get_settings_pages', $settings );
}
return self::$settings;
}
/**
* Save the settings.
*/
public static function save() {
global $current_tab;
$current_tab = (isset($_GET['tab']))?$_GET['tab']:'go-pro';
check_admin_referer( 'blogsqode-settings' );
// Trigger actions.
do_action( 'blogsqode_settings_save_' . $current_tab );
do_action( 'blogsqode_update_options_' . $current_tab );
// do_action( 'blogsqode_settings_save_' . $current_tab_slider );
// do_action( 'blogsqode_update_options_' . $current_tab_slider );
// do_action( 'blogsqode_settings_save_' . $current_tab_gen_with_sidebar );
// do_action( 'blogsqode_update_options_' . $current_tab_gen_with_sidebar );
// do_action( 'blogsqode_settings_save_' . $current_tab_slider_with_sidebar );
// do_action( 'blogsqode_update_options_' . $current_tab_slider_with_sidebar );
do_action( 'blogsqode_update_options' );
self::add_message( esc_html__( 'Your settings have been saved.', 'blogsqode' ) );
// self::check_download_folder_protection();
// Clear any unwanted data and flush rules.
update_option( 'blogsqode_queue_flush_rewrite_rules', 'yes' );
do_action( 'blogsqode_settings_saved' );
}
/**
* Add a message.
*
* @param string $text Message.
*/
public static function add_message( $text ) {
self::$messages[] = $text;
}
/**
* Add an error.
*
* @param string $text Message.
*/
public static function add_error( $text ) {
self::$errors[] = $text;
}
/**
* Output messages + errors.
*/
public static function show_messages() {
if ( count( self::$errors ) > 0 ) {
foreach ( self::$errors as $error ) {
echo '<div id="message" class="error inline"><p><strong>' . esc_html__( $error, 'blogsqode' ) . '</strong></p></div>';
}
} elseif ( count( self::$messages ) > 0 ) {
foreach ( self::$messages as $message ) {
echo '<div id="message" class="updated inline"><p><strong>' . esc_html__( $message , 'blogsqode') . '</strong></p></div>';
}
}
}
/**
* Settings page.
*
* Handles the display of the main blogsqode settings page in admin.
*/
public static function output() {
global $current_section, $current_tab;
$current_tab = (isset($_REQUEST['tab']))?$_REQUEST['tab'] : 'go-pro';
$current_tab = esc_attr($current_tab);
// $current_tab_slider = (isset($_REQUEST['tab']))?$_REQUEST['tab'] : 'slider';
// $current_tab_slider = esc_attr($current_tab_slider);
// $current_tab_gen_with_sidebar = (isset($_REQUEST['tab']))?$_REQUEST['tab'] : 'general_with_sidebar';
// $current_tab_gen_with_sidebar = esc_attr($current_tab_gen_with_sidebar);
// $current_tab_slider_with_sidebar = (isset($_REQUEST['tab']))?$_REQUEST['tab'] : 'slider_with_sidebar';
// $current_tab_slider_with_sidebar = esc_attr($current_tab_slider_with_sidebar);
// $suffix = Constants::is_true( 'SCRIPT_DEBUG' ) ? '' : '.min';
do_action( 'blogsqode_settings_start' );
// Get tabs for the settings page.
$tabs = apply_filters( 'blogsqode_settings_tabs_array', array());
include dirname( __FILE__ ) . '/views/blogsqode-admin-page.php';
}
/**
* Get a setting from the settings API.
*
* @param string $option_name Option name.
* @param mixed $default Default value.
* @return mixed
*/
public static function get_option( $option_name, $default = '' ) {
if ( ! $option_name ) {
return $default;
}
// Array value.
if ( strstr( $option_name, '[' ) ) {
parse_str( $option_name, $option_array );
// Option name is first key.
$option_name = current( array_keys( $option_array ) );
// Get value.
$option_values = get_option( $option_name, '' );
$key = key( $option_array[ $option_name ] );
if ( isset( $option_values[ $key ] ) ) {
$option_value = $option_values[ $key ];
} else {
$option_value = null;
}
} else {
// Single value.
$option_value = get_option( $option_name, null );
}
if ( is_array( $option_value ) ) {
$option_value = wp_unslash( $option_value );
} elseif ( ! is_null( $option_value ) ) {
$option_value = stripslashes( $option_value );
}
return ( null === $option_value ) ? $default : $option_value;
}
/**
* Output admin fields.
*
* Loops through the blogsqode options array and outputs each field.
*
* @param array[] $options Opens array to output.
*/
public static function output_fields( $options ) {
foreach ( $options as $value ) {
if ( ! isset( $value['type'] ) ) {
continue;
}
if ( ! isset( $value['id'] ) ) {
$value['id'] = '';
}
if ( ! isset( $value['title'] ) ) {
$value['title'] = isset( $value['name'] ) ? $value['name'] : '';
}
if ( ! isset( $value['class'] ) ) {
$value['class'] = '';
}
if ( ! isset( $value['css'] ) ) {
$value['css'] = '';
}
if ( ! isset( $value['default'] ) ) {
$value['default'] = '';
}
if ( ! isset( $value['desc'] ) ) {
$value['desc'] = '';
}
if ( ! isset( $value['desc_tip'] ) ) {
$value['desc_tip'] = true;
}
if ( ! isset( $value['placeholder'] ) ) {
$value['placeholder'] = '';
}
if ( ! isset( $value['suffix'] ) ) {
$value['suffix'] = '';
}
if ( ! isset( $value['value'] ) ) {
$value['value'] = self::get_option( $value['id'], $value['default'] );
}
// Custom attribute handling.
$custom_attributes = array();
if ( ! empty( $value['custom_attributes'] ) && is_array( $value['custom_attributes'] ) ) {
foreach ( $value['custom_attributes'] as $attribute => $attribute_value ) {
$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"';
}
}
// Description handling.
$field_description = self::get_field_description( $value );
$description = $field_description['description'];
$tooltip_html = esc_html__($field_description['tooltip_html'], 'blogsqode');
// Switch based on type.
switch ( $value['type'] ) {
// Section Titles.
case 'title':
echo '<div class="blogsqode_title_wrap">';
echo '<div class="heading_wrap">';
if ( ! empty( $value['title'] ) ) {
echo '<h2>' . esc_html__( $value['title'], 'blogsqode' ) . '</h2>';
}
if ( ! empty( $value['desc'] ) ) {
echo '<div id="' . esc_attr( sanitize_title( $value['id'] ) ) . '-description">';
echo wp_kses_post( wpautop( wptexturize( $value['desc'] ) ) );
echo '</div>';
}
echo '</div>';
// if($value['id'] == 'blog_page_settings'){
// echo '<div class="shortcode_box"><input type="text" readonly="" onclick="this.select()" class="copy_shortcode" title="Copy Shortcode" value="[blogsqode_blog_list]"></div>';
// }
echo '</div>';
echo '<table class="form-table" id="table-'.esc_attr($value['id']).'">' . "\n\n";
if ( ! empty( $value['id'] ) ) {
do_action( 'blogsqode_settings_' . sanitize_title( $value['id'] ) );
}
break;
// Section Ends.
case 'sectionend':
if ( ! empty( $value['id'] ) ) {
do_action( 'blogsqode_settings_' . sanitize_title( $value['id'] ) . '_end' );
}
echo '</table>';
if ( ! empty( $value['id'] ) ) {
do_action( 'blogsqode_settings_' . sanitize_title( $value['id'] ) . '_after' );
}
break;
// Standard text inputs and subtypes like 'number'.
case 'number':
$option_value = $value['value'];
?><tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html__( $value['title'], 'blogsqode' ); ?> </label>
</th>
<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
<input
name="<?php echo esc_attr( $value['id'] ); ?>"
id="<?php echo esc_attr( $value['id'] ); ?>"
type="<?php echo esc_attr( $value['type'] ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
value="<?php echo esc_attr( $option_value ); ?>"
class="<?php echo esc_attr( $value['class'] ); ?>"
placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
<?php echo implode( ' ', $custom_attributes ); // WPCS: XSS ok. ?>
/><?php echo esc_html__( $value['suffix'], 'blogsqode' ); ?> <?php echo esc_html__($description, 'blogsqode'); // WPCS: XSS ok. ?>
</td>
</tr>
<?php
break;
// Select boxes.
case 'select':
case 'multiselect':
$option_value = $value['value'];
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html__( $value['title'] , 'blogsqode'); ?> </label>
</th>
<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
<select
name="<?php echo esc_attr( $value['id'] ); ?><?php echo ( 'multiselect' === $value['type'] ) ? '[]' : ''; ?>"
id="<?php echo esc_attr( $value['id'] ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
class="<?php echo esc_attr( $value['class'] ); ?>"
<?php echo implode( ' ', $custom_attributes ); // WPCS: XSS ok. ?>
<?php echo 'multiselect' === esc_attr($value['type']) ? 'multiple="multiple"' : ''; ?>
>
<?php
foreach ( $value['options'] as $key => $val ) {
?>
<option data-img="<?php echo (is_array($val))?$val[1]:''; ?>" value="<?php echo esc_attr( $key ); ?>"
<?php
if ( is_array( $option_value ) ) {
selected( in_array( (string) $key, $option_value, true ), true );
} else {
selected( $option_value, (string) $key );
}
?>
><?php echo is_array($val)? $val[0] : esc_html__( $val , 'blogsqode'); ?></option>
<?php
}
?>
</select> <?php echo esc_html__($description, 'blogsqode'); // WPCS: XSS ok. ?>
</td>
</tr>
<?php
break;
case 'switchbox':
$option_value = esc_attr($value['value']);
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html__( $value['title'], 'blogsqode' ); ?></label>
</th>
<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
<fieldset>
<div class="switch-field">
<input
type="radio"
id="<?php echo esc_attr( $value['id'] ); ?>-unable"
class="<?php echo esc_attr( $value['class'] ); ?> switch-on"
name="<?php echo esc_attr( $value['id'] ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
<?php echo implode( ' ', $custom_attributes ); // WPCS: XSS ok. ?>
value="Unable" <?php echo ($option_value === 'Disable') ? '' :esc_attr('checked'); ?>/>
<label for="<?php echo esc_attr( $value['id'] ); ?>-unable" class="left-check"><?php echo isset($value['unable'])?$value['unable']:esc_html__('On'); ?></label>
<input
type="radio"
id="<?php echo esc_attr( $value['id'] ); ?>-disable"
class="<?php echo esc_attr( $value['class'] ); ?> switch-off"
name="<?php echo esc_attr( $value['id'] ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
<?php echo implode( ' ', $custom_attributes ); // WPCS: XSS ok. ?>
value="Disable" <?php echo ($option_value === 'Disable') ? 'checked' :''; ?>/>
<label for="<?php echo esc_attr( $value['id'] ); ?>-disable" class="right-check"><?php echo isset($value['disable'])?$value['disable']:esc_html__('Off'); ?></label>
<div id="flap"><span class="content"></span></div>
</div>
<?php echo $description; // WPCS: XSS ok. ?>
</fieldset>
</td>
</tr>
<?php
break;
case 'radiobox':
$option_value = esc_attr($value['value']);
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html__($value['title'], 'blogsqode'); ?></label>
</th>
<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
<fieldset>
<div class="radio-switch-field">
<input
type="radio"
id="<?php echo esc_attr($value['id']); ?>-unable"
class="<?php echo esc_attr($value['class']); ?> switch-on"
name="<?php echo esc_attr($value['id']); ?>"
style="<?php echo esc_attr($value['css']); ?>"
<?php echo implode(' ', $custom_attributes); // WPCS: XSS ok. ?>
value="<?php echo isset($value['with_sidebar_value']) ? esc_attr($value['with_sidebar_value']) : 'Unable'; ?>" <?php echo ($option_value === 'Unable') ? 'checked' : ''; ?>/>
<label for="<?php echo esc_attr($value['id']); ?>-unable" class="radio-left-check"><?php echo isset($value['with_sidebar']) ? esc_html__($value['with_sidebar']) : esc_html__('With Sidebar'); ?></label>
<input
type="radio"
id="<?php echo esc_attr($value['id']); ?>-disable"
class="<?php echo esc_attr($value['class']); ?> switch-off"
name="<?php echo esc_attr($value['id']); ?>"
style="<?php echo esc_attr($value['css']); ?>"
<?php echo implode(' ', $custom_attributes); // WPCS: XSS ok. ?>
value="<?php echo isset($value['without_sidebar_value']) ? esc_attr($value['without_sidebar_value']) : 'Without Sidebar'; ?>" <?php echo ($option_value === 'Without Sidebar') ? 'checked' : ''; ?>/>
<label for="<?php echo esc_attr($value['id']); ?>-disable" class="radio-right-check"><?php echo isset($value['without_sidebar']) ? esc_html__($value['without_sidebar']) : esc_html__('Without Sidebar'); ?></label>
<div id="flap"><span class="content"></span></div>
</div>
<?php echo $description; // WPCS: XSS ok. ?>
</fieldset>
</td>
</tr>
<?php break;
case 'checkboxes':
$option_values = $value['value'];
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html__($value['title'], 'blogsqode'); ?></label>
</th>
<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
<fieldset>
<div class="custom-checkbox">
<?php if (!empty($value['options']) && is_array($value['options'])) : ?>
<?php foreach ($value['options'] as $option_value => $option_label) : ?>
<input
type="checkbox"
id="<?php echo esc_attr($value['id'] . '_' . $option_value); ?>"
class="<?php echo esc_attr($value['class']); ?>"
name="<?php echo esc_attr($value['id'] . '[]'); ?>"
style="<?php echo esc_attr($value['css']); ?>"
<?php echo implode(' ', $custom_attributes); // WPCS: XSS ok. ?>
value="<?php echo esc_attr($option_value); ?>"
<?php
if ((!is_array($option_values) && $option_values === $option_value) || (is_array($option_values) && in_array($option_value, $option_values))) {
echo 'checked'; // Set checked attribute based on saved state
}
?>
/>
<label for="<?php echo esc_attr($value['id'] . '_' . $option_value); ?>" class="checkbox-label"><?php echo esc_html__($option_label); ?></label>
<?php endforeach; ?>
<?php endif; ?>
</div>
<?php echo $description; // WPCS: XSS ok. ?>
</fieldset>
<label>
<button type="submit" class="button-primary"><?php echo esc_html__('Save', 'blogsqode'); ?></button>
<p class="description" style="margin-top:8px;"><?php esc_html_e('Click this button to save your selected post type.', 'blogsqode'); ?></p>
</label>
</td>
</tr>
<?php break;
case 'file':
$option_value = esc_attr($value['value']);
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html__( $value['title'] , 'blogsqode'); ?></label>
</th>
<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
<fieldset>
<?php
if ($option_value == '') {
$remove_escaped = 'style=display:none;';
$upload_escaped = false;
} else {
$remove_escaped = '';
$upload_escaped = 'style=display:none;';
}
?>
<div class="file-upload-field">
<input type="text"
value="<?php echo esc_attr($option_value); ?>"
name="<?php echo esc_attr( $value['id'] ); ?>"
class="<?php echo esc_attr( $value['class'] ); ?>" />
<a href="javascript:void(0);" data-choose="Choose a File" data-update="Select File" class="blogsqode-upload" <?php echo esc_attr($upload_escaped); ?>><span></span><?php echo esc_html__('Browse', 'blogsqode'); ?></a>
<a href="javascript:void(0);" class="blogsqode-upload-remove" <?php echo esc_attr($remove_escaped); ?>><?php echo esc_html__('Remove Upload', 'blogsqode'); ?></a>
</div>
</fieldset>
</td>
</tr>
<?php
break;
case 'preview_design':
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html__( $value['title'], 'blogsqode' ); ?></label>
</th>
<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
<fieldset>
<div class="<?php echo esc_attr( $value['class'] ); ?>" id="<?php echo esc_attr( $value['id'] ); ?>">
<?php
$select_id = str_replace("_preview","",$value['id']);
$option_selected_value = esc_attr(get_option($select_id));
$image_name = '';
if($select_id == 'blogsqode_pagination_layout'){
$image_name = 'pagination';
}else if($select_id == 'blogsqode_read_more_button_layout'){
$image_name = 'read-more';
}else if($select_id == 'blogsqode_blog_layout'){
$image_name = 'blog-layout';
}
if($option_selected_value){
$previewimg = BLOGSQODE_PLUGIN_FILE.'images/'.$image_name.'-'.$option_selected_value.'.png';
$previewimg = $previewimg?esc_url($previewimg):'';
echo '<img src="' . esc_url($previewimg) . '" class="preview_image" id="preview_image_' . esc_attr($select_id) . '">';
switch ( $value['id'] ) {
case 'blogsqode_blog_layout_preview':
$shortcode = '[blogsoqde_blog_list layout=' . htmlspecialchars( $option_selected_value ) . ']';
break;
case 'blogsqode_blog_layout_preview_slider':
$shortcode = '[blogsode_slider layout=' . htmlspecialchars( $option_selected_value ) . ']';
break;
default:
$image_name = '';
$shortcode = '';
break;
}
if ( ! empty( $shortcode ) ) {
echo '<div class="shortcode-copy-text">';
echo '<div id="shortcode-text">' . $shortcode . '</div>';
echo '<a class="copy-button" onclick="copyToClipboard()">Copy</a>';
echo '</div>';
}
}
?>
</div>
</fieldset>
</td>
</tr>
<?php
break;
case 'divstart':
?> <div class="<?php echo esc_attr( $value['class'] ); ?>" id="<?php echo esc_attr( $value['id'] ); ?>"> <?php
break;
case 'color':
$option_value = $value['value'];
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html__($value['title'], 'blogsqode'); ?></label>
</th>
<td class="wp-picker-container forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
<input name="<?php echo esc_attr($value['id']); ?>" id="<?php echo esc_attr($value['id']); ?>" type="text"
style="<?php echo esc_attr($value['css']); ?>" value="<?php echo esc_attr($option_value); ?>"
class="wp-color-picker color_pallete <?php echo esc_attr($value['class']); ?>" <?php echo implode(' ', $custom_attributes); // WPCS: XSS ok. ?> />
<?php echo esc_html__($value['suffix'], 'blogsqode'); ?>
<?php echo wp_kses_post($description, 'blogsqode'); // WPCS: XSS ok. ?>
</td>
</tr>
<?php
break;
case 'html':
case 'custom_html':
?>
<div>
<?php
if ( isset( $value['html'] ) ) {
echo wp_kses_post( $value['html'] );
}
?>
</div>
<?php
break;
// Default: run an action.
default:
do_action( 'blogsqode_admin_field_' . $value['type'], $value );
break;
}
}
}
/**
* Helper function to get the formatted description and tip HTML for a
* given form field. Plugins can call this when implementing their own custom
* settings types.
*
* @param array $value The form field value array.
* @return array The description and tip as a 2 element array.
*/
public static function get_field_description( $value ) {
$description = '';
$tooltip_html = '';
if ( true === $value['desc_tip'] ) {
$tooltip_html = $value['desc'];
} elseif ( ! empty( $value['desc_tip'] ) ) {
$description = $value['desc'];
$tooltip_html = $value['desc_tip'];
} elseif ( ! empty( $value['desc'] ) ) {
$description = $value['desc'];
}
if ( $description && in_array( $value['type'], array( 'textarea', 'radio' ), true ) ) {
$description = '<p style="margin-top:0">' . esc_html__( $description , 'blogsqode' ) . '</p>';
} elseif ( $description && in_array( $value['type'], array( 'checkbox' ), true ) ) {
$description = esc_html__( $description, 'blogsqode' );
} elseif ( $description && in_array( $value['type'], array( 'select' ), true ) ) {
$description = esc_html__( $description, 'blogsqode' );
} elseif ( $description ) {
$description = '<p class="description">' . esc_html__( $description , 'blogsqode') . '</p>';
}
if ( $tooltip_html && in_array( $value['type'], array( 'checkbox' ), true ) ) {
$tooltip_html = '<p class="description">' . esc_html__($tooltip_html, 'blogsqode') . '</p>';
}
return array(
'description' => $description,
'tooltip_html' => $tooltip_html,
);
}
/**
* Save admin fields.
*
* Loops through the blogsqode options array and outputs each field.
*
* @param array $options Options array to output.
* @param array $data Optional. Data to use for saving. Defaults to $_POST.
* @return bool
*/
public static function save_fields( $options, $data = null ) {
if ( is_null( $data ) ) {
$data = $_POST; // WPCS: input var okay, CSRF ok.
}
if ( empty( $data ) ) {
return false;
}
// Options to update will be stored here and saved later.
$update_options = array();
$autoload_options = array();
// Loop options and get values to save.
foreach ( $options as $option ) {
if ( ! isset( $option['id'] ) || ! isset( $option['type'] ) || ( isset( $option['is_option'] ) && false === $option['is_option'] ) ) {
continue;
}
// Get posted value.
if ( strstr( $option['id'], '[' ) ) {
parse_str( $option['id'], $option_name_array );
$option_name = current( array_keys( $option_name_array ) );
$setting_name = key( $option_name_array[ $option_name ] );
$raw_value = isset( $data[ $option_name ][ $setting_name ] ) ? wp_unslash( $data[ $option_name ][ $setting_name ] ) : null;
} else {
$option_name = $option['id'];
$setting_name = '';
$raw_value = isset( $data[ $option['id'] ] ) ? wp_unslash( $data[ $option['id'] ] ) : null;
}
// Format the value based on option type.
switch ( $option['type'] ) {
case 'select':
$allowed_values = empty( $option['options'] ) ? array() : array_map( 'strval', array_keys( $option['options'] ) );
if ( empty( $option['default'] ) && empty( $allowed_values ) ) {
$value = null;
break;
}
$default = ( empty( $option['default'] ) ? $allowed_values[0] : $option['default'] );
$value = in_array( $raw_value, $allowed_values, true ) ? $raw_value : $default;
break;
default:
$value = $raw_value ;
break;
}
/**
* Fire an action when a certain 'type' of field is being saved.
*
* @deprecated 2.4.0 - doesn't allow manipulation of values!
*/
if ( has_action( 'blogsqode_update_option_' . sanitize_title( $option['type'] ) ) ) {
wc_deprecated_function( 'The blogsqode_update_option_X action', '2.4.0', 'blogsqode_admin_settings_sanitize_option filter' );
do_action( 'blogsqode_update_option_' . sanitize_title( $option['type'] ), $option );
continue;
}
/**
* Sanitize the value of an option.
*
* @since 2.4.0
*/
$value = apply_filters( 'blogsqode_admin_settings_sanitize_option', $value, $option, $raw_value );
/**
* Sanitize the value of an option by option name.
*
* @since 2.4.0
*/
$value = apply_filters( "blogsqode_admin_settings_sanitize_option_$option_name", $value, $option, $raw_value );
if ( is_null( $value ) ) {
continue;
}
// Check if option is an array and handle that differently to single values.
if ( $option_name && $setting_name ) {
if ( ! isset( $update_options[ $option_name ] ) ) {
$update_options[ $option_name ] = get_option( $option_name, array() );
}
if ( ! is_array( $update_options[ $option_name ] ) ) {
$update_options[ $option_name ] = array();
}
$update_options[ $option_name ][ $setting_name ] = $value;
} else {
$update_options[ $option_name ] = $value;
}
$autoload_options[ $option_name ] = isset( $option['autoload'] ) ? (bool) $option['autoload'] : true;
/**
* Fire an action before saved.
*
* @deprecated 2.4.0 - doesn't allow manipulation of values!
*/
do_action( 'blogsqode_update_option', $option );
}
// Save all options in our array.
foreach ( $update_options as $name => $value ) {
update_option( $name, $value, $autoload_options[ $name ] ? 'yes' : 'no' );
}
return true;
}
}
endif;