File "class-sp-admin-settings.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/sportspress/includes/admin/class-sp-admin-settings.php
File size: 24.43 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* SportsPress Admin Settings Class.
*
* @author ThemeBoy
* @category Admin
* @package SportsPress/Admin
* @version 2.7.21
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( ! class_exists( 'SP_Admin_Settings' ) ) :
/**
* SP_Admin_Settings
*/
class SP_Admin_Settings {
private static $settings = array();
private static $errors = array();
private static $messages = array();
private static $overrides = array();
/**
* Include the settings page classes
*/
public static function get_settings_pages() {
if ( empty( self::$settings ) ) {
$settings = array();
include_once 'class-sp-admin-sports.php';
include_once 'settings/class-sp-settings-page.php';
$settings[] = include 'settings/class-sp-settings-modules.php';
$settings[] = include 'settings/class-sp-settings-general.php';
$settings[] = include 'settings/class-sp-settings-events.php';
$settings[] = include 'settings/class-sp-settings-teams.php';
$settings[] = include 'settings/class-sp-settings-players.php';
$settings[] = include 'settings/class-sp-settings-staff.php';
$settings = apply_filters( 'sportspress_get_settings_pages', $settings );
$settings[] = include 'settings/class-sp-settings-text.php';
if (
( ! is_multisite() && current_user_can( 'manage_options' ) ) ||
( is_multisite() && current_user_can( 'manage_network_options' ) )
) {
$settings[] = include 'settings/class-sp-settings-licenses.php';
}
$settings[] = include 'settings/class-sp-settings-status.php';
self::$settings = apply_filters( 'sportspress_get_settings_config_pages', $settings );
}
return self::$settings;
}
/**
* Save the settings
*/
public static function save() {
global $current_section, $current_tab;
if ( empty( $_REQUEST['_wpnonce'] ) || ! wp_verify_nonce( sanitize_key( $_REQUEST['_wpnonce'] ), 'sportspress-settings' ) ) {
die( esc_html__( 'Action failed. Please refresh the page and retry.', 'sportspress' ) );
}
// Trigger actions
do_action( 'sportspress_settings_save_' . $current_tab );
do_action( 'sportspress_update_options_' . $current_tab );
do_action( 'sportspress_update_options' );
self::add_message( esc_attr__( 'Your settings have been saved.', 'sportspress' ) );
do_action( 'sportspress_settings_saved' );
}
/**
* Add a message
*
* @param string $text
*/
public static function add_message( $text ) {
self::$messages[] = $text;
}
/**
* Add an override
*
* @param string $text
*/
public static function add_override( $text ) {
self::$overrides[] = $text;
}
/**
* Add an error
*
* @param string $text
*/
public static function add_error( $text ) {
self::$errors[] = $text;
}
/**
* Output messages + overrides + errors
*/
public static function show_messages() {
if ( sizeof( self::$errors ) > 0 ) {
foreach ( self::$errors as $error ) {
echo '<div id="message" class="error fade"><p><strong>' . esc_html( $error ) . '</strong></p></div>';
}
} elseif ( sizeof( self::$overrides ) > 0 ) {
foreach ( self::$overrides as $override ) {
echo '<div id="message" class="updated fade"><p><strong>' . esc_html( $override ) . '</strong></p></div>';
}
} elseif ( sizeof( self::$messages ) > 0 ) {
foreach ( self::$messages as $message ) {
echo '<div id="message" class="updated fade"><p><strong>' . esc_html( $message ) . '</strong></p></div>';
}
}
}
/**
* Settings page.
*
* Handles the display of the main sportspress settings page in admin.
*
* @access public
* @return void
*/
public static function output() {
global $current_section, $current_tab;
do_action( 'sportspress_settings_start' );
wp_enqueue_script( 'sportspress_settings', SP()->plugin_url() . '/assets/js/admin/settings.js', array( 'jquery', 'wp-color-picker', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'iris', 'chosen' ), SP()->version, true );
wp_localize_script(
'sportspress_settings',
'localized_strings',
array(
'none' => esc_attr__( 'None', 'sportspress' ),
)
);
// Include settings pages
self::get_settings_pages();
// Get current tab/section
$current_tab = empty( $_GET['tab'] ) ? 'modules' : sanitize_title( wp_unslash( $_GET['tab'] ) );
$current_section = empty( $_REQUEST['section'] ) ? '' : sanitize_title( wp_unslash( $_REQUEST['section'] ) );
// Save settings if data has been posted
if ( ! empty( $_POST ) ) {
self::save();
}
// Add any posted messages
if ( ! empty( $_GET['sp_error'] ) ) {
self::add_error( stripslashes( sanitize_text_field( wp_unslash( $_GET['sp_error'] ) ) ) );
}
if ( ! empty( $_GET['sp_message'] ) ) {
self::add_message( stripslashes( sanitize_text_field( wp_unslash( $_GET['sp_message'] ) ) ) );
}
self::show_messages();
// Get tabs for the settings page
$tabs = apply_filters( 'sportspress_settings_tabs_array', array() );
include 'views/html-admin-settings.php';
}
/**
* Get a setting from the settings API.
*
* @param mixed $option
* @return string
*/
public static function get_option( $option_name, $default = '' ) {
// Array value
if ( strstr( $option_name, '[' ) ) {
parse_str( html_entity_decode( $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;
}
// Single value
} else {
$option_value = get_option( $option_name, null );
}
if ( is_array( $option_value ) ) {
$option_value = array_map( 'stripslashes', $option_value );
} elseif ( ! is_null( $option_value ) ) {
$option_value = stripslashes( $option_value );
}
return $option_value === null ? $default : $option_value;
}
/**
* Output admin fields.
*
* Loops though the sportspress options array and outputs each field.
*
* @access public
* @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'] = false;
}
if ( ! isset( $value['placeholder'] ) ) {
$value['placeholder'] = '';
}
// 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
if ( $value['desc_tip'] === true ) {
$description = '';
$tip = $value['desc'];
} elseif ( ! empty( $value['desc_tip'] ) ) {
$description = $value['desc'];
$tip = $value['desc_tip'];
} elseif ( ! empty( $value['desc'] ) ) {
$description = $value['desc'];
$tip = '';
} else {
$description = $tip = '';
}
if ( $description && in_array( $value['type'], array( 'textarea', 'radio' ) ) ) {
$description = '<p style="margin-top:0">' . wp_kses_post( $description ) . '</p>';
} elseif ( $description && in_array( $value['type'], array( 'checkbox' ) ) ) {
$description = wp_kses_post( $description );
} elseif ( $description && in_array( $value['type'], array( 'select' ) ) ) {
$description = '<p class="description">' . wp_kses_post( $description ) . '</p>';
} elseif ( $description ) {
$description = '<span class="description">' . wp_kses_post( $description ) . '</span>';
}
if ( $tip && in_array( $value['type'], array( 'checkbox' ) ) ) {
$tip = '<p class="description">' . $tip . '</p>';
} elseif ( $tip ) {
$tip = '<i class="dashicons dashicons-editor-help sp-desc-tip" title="' . $tip . '" />';
}
// Switch based on type
switch ( $value['type'] ) {
// Section Titles
case 'title':
echo '<div class="sp-settings-section sp-settings-section-' . esc_attr( sp_array_value( $value, 'id' ) ) . '">';
echo '<a name="sp-settings-section-' . esc_attr( sp_array_value( $value, 'id' ) ) . '"></a>';
if ( ! empty( $value['title'] ) ) {
echo '<h3>' . esc_html( $value['title'] ) . '</h3>';
}
if ( ! empty( $value['desc'] ) ) {
echo wp_kses_post( wpautop( wptexturize( $value['desc'] ) ) );
}
echo '<table class="form-table">' . "\n\n";
if ( ! empty( $value['id'] ) ) {
do_action( 'sportspress_settings_' . sanitize_title( $value['id'] ) );
}
break;
// Section Ends
case 'sectionend':
if ( ! empty( $value['id'] ) ) {
do_action( 'sportspress_settings_' . sanitize_title( $value['id'] ) . '_end' );
}
echo '</table>';
if ( ! empty( $value['id'] ) ) {
do_action( 'sportspress_settings_' . sanitize_title( $value['id'] ) . '_after' );
}
echo '</div>';
break;
// Standard text inputs and subtypes like 'number'
case 'text':
case 'email':
case 'number':
case 'color':
case 'password':
$type = $value['type'];
$class = '';
$option_value = self::get_option( $value['id'], $value['default'] );
if ( $value['type'] == 'color' ) {
$type = 'text';
$value['class'] .= 'colorpick';
$description .= '<div id="colorPickerDiv_' . esc_attr( $value['id'] ) . '" class="colorpickdiv" style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div>';
}
?><tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
<?php echo esc_html( $tip ); ?>
</th>
<td class="forminp forminp-<?php echo esc_attr( $value['type'] ); ?>">
<input
name="<?php echo esc_attr( $value['id'] ); ?>"
id="<?php echo esc_attr( $value['id'] ); ?>"
type="<?php echo esc_attr( $type ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
value="<?php echo esc_attr( $option_value ); ?>"
placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
class="<?php echo esc_attr( $value['class'] ); ?>"
<?php echo esc_html( implode( ' ', $custom_attributes ) ); ?>
/> <?php echo wp_kses_post( $description ); ?>
</td>
</tr>
<?php
break;
// Textarea
case 'textarea':
$option_value = self::get_option( $value['id'], $value['default'] );
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
<?php echo esc_html( $tip ); ?>
</th>
<td class="forminp forminp-<?php echo esc_attr( $value['type'] ); ?>">
<?php echo wp_kses_post( $description ); ?>
<textarea
name="<?php echo esc_attr( $value['id'] ); ?>"
id="<?php echo esc_attr( $value['id'] ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
class="<?php echo esc_attr( $value['class'] ); ?>"
<?php echo esc_html( implode( ' ', $custom_attributes ) ); ?>
><?php echo esc_textarea( $option_value ); ?></textarea>
</td>
</tr>
<?php
break;
// Select boxes
case 'select':
case 'multiselect':
$option_value = self::get_option( $value['id'], $value['default'] );
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
<?php echo esc_html( $tip ); ?>
</th>
<td class="forminp forminp-<?php echo esc_attr( $value['type'] ); ?>">
<select
name="<?php echo esc_attr( $value['id'] ); ?><?php if ( $value['type'] == 'multiselect' ) { echo '[]';} ?>"
id="<?php echo esc_attr( $value['id'] ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
class="chosen-select
<?php
if ( is_rtl() ) :
?>
chosen-rtl<?php endif; ?> <?php echo esc_attr( $value['class'] ); ?>"
<?php echo esc_html( implode( ' ', $custom_attributes ) ); ?>
<?php
if ( $value['type'] == 'multiselect' ) {
echo 'multiple="multiple"';}
?>
>
<?php
foreach ( $value['options'] as $key => $val ) {
?>
<option value="<?php echo esc_attr( $key ); ?>"
<?php
if ( is_array( $option_value ) ) {
selected( in_array( $key, $option_value ), true );
} else {
selected( $option_value, $key );
}
?>
><?php echo esc_attr( $val ); ?></option>
<?php
}
?>
</select> <?php echo wp_kses_post( $description ); ?>
</td>
</tr>
<?php
break;
// Select boxes with optgroup
case 'groupselect':
$option_value = self::get_option( $value['id'], $value['default'] );
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
<?php echo esc_html( $tip ); ?>
</th>
<td class="forminp forminp-<?php echo esc_attr( $value['type'] ); ?>">
<select
name="<?php echo esc_attr( $value['id'] ); ?><?php if ( $value['type'] == 'multiselect' ) { echo '[]';} ?>"
id="<?php echo esc_attr( $value['id'] ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
class="chosen-select
<?php
if ( is_rtl() ) :
?>
chosen-rtl<?php endif; ?> <?php echo esc_attr( $value['class'] ); ?>"
<?php echo esc_html( implode( ' ', $custom_attributes ) ); ?>
<?php
if ( $value['type'] == 'multiselect' ) {
echo 'multiple="multiple"';}
?>
>
<?php
foreach ( $value['options'] as $group => $options ) {
?>
<optgroup label="<?php esc_attr_e( $group, 'sportspress' ); ?>">
<?php
foreach ( $options as $key => $val ) {
?>
<option value="<?php echo esc_attr( $key ); ?>"
<?php
if ( is_array( $option_value ) ) {
selected( in_array( $key, $option_value ), true );
} else {
selected( $option_value, $key );
}
?>
><?php echo esc_attr( $val ); ?></option>
<?php
}
?>
</optgroup>
<?php
}
?>
</select> <?php echo wp_kses_post( $description ); ?>
</td>
</tr>
<?php
break;
// Select sport
case 'sport':
$default = apply_filters( 'sportspress_default_sport', 'soccer' );
$option_value = self::get_option( $value['id'], $value['default'] );
if ( 'none' === $option_value ) {
$option_value = $default;
}
$categories = SP_Admin_Sports::sport_category_names();
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
<?php echo esc_html( $tip ); ?>
</th>
<td class="forminp forminp-<?php echo esc_attr( $value['type'] ); ?>">
<select
name="<?php echo esc_attr( $value['id'] ); ?><?php if ( $value['type'] == 'multiselect' ) { echo '[]';} ?>"
id="<?php echo esc_attr( $value['id'] ); ?>"
style="<?php echo esc_attr( $value['css'] ); ?>"
class="sp-select-sport chosen-select
<?php
if ( is_rtl() ) :
?>
chosen-rtl<?php endif; ?> <?php echo esc_attr( $value['class'] ); ?>"
<?php echo esc_html( implode( ' ', $custom_attributes ) ); ?>
<?php
if ( $value['type'] == 'multiselect' ) {
echo 'multiple="multiple"';}
?>
>
<?php
foreach ( $value['options'] as $group => $options ) {
?>
<optgroup label="<?php echo esc_attr( sp_array_value( $categories, $group, $group ) ); ?>">
<?php
foreach ( $options as $key => $val ) {
?>
<option value="<?php echo esc_attr( $key ); ?>"
<?php
if ( is_array( $option_value ) ) {
selected( in_array( $key, $option_value ), true );
} else {
selected( $option_value, $key );
}
?>
><?php echo esc_attr( $val ); ?></option>
<?php
}
?>
</optgroup>
<?php
}
?>
</select> <?php echo wp_kses_post( $description ); ?> <a class="button button-small sp-configure-sport" href="<?php echo esc_url( admin_url( add_query_arg( array( 'page' => 'sportspress-config' ), 'admin.php' ) ) ); ?>"><?php esc_html_e( 'Configure', 'sportspress' ); ?></a>
<p>
<label>
<input type="checkbox" name="add_sample_data" id="add_sample_data" <?php checked( sp_array_value( $value, 'welcome' ) ); ?>>
<?php esc_html_e( 'Install demo content', 'sportspress' ); ?>
</label>
</p>
</td>
</tr>
<?php
break;
// Radio inputs
case 'radio':
$option_value = self::get_option( $value['id'], $value['default'] );
?>
<tr valign="top">
<th scope="row" class="titledesc">
<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
<?php echo wp_kses_post( $tip ); ?>
</th>
<td class="forminp forminp-<?php echo esc_attr( $value['type'] ); ?>">
<fieldset>
<?php echo wp_kses_post( $description ); ?>
<ul>
<?php
foreach ( $value['options'] as $key => $val ) {
?>
<li>
<label><input
name="<?php echo esc_attr( $value['id'] ); ?>"
value="<?php echo esc_attr( $key ); ?>"
type="radio"
style="<?php echo esc_attr( $value['css'] ); ?>"
class="<?php echo esc_attr( $value['class'] ); ?>"
<?php echo esc_html( implode( ' ', $custom_attributes ) ); ?>
<?php checked( $key, $option_value ); ?>
/> <?php echo esc_attr( $val ); ?></label>
</li>
<?php
}
?>
</ul>
</fieldset>
</td>
</tr>
<?php
break;
// Checkbox input
case 'checkbox':
$option_value = self::get_option( $value['id'], $value['default'] );
$visbility_class = array();
if ( ! isset( $value['hide_if_checked'] ) ) {
$value['hide_if_checked'] = false;
}
if ( ! isset( $value['show_if_checked'] ) ) {
$value['show_if_checked'] = false;
}
if ( $value['hide_if_checked'] == 'yes' || $value['show_if_checked'] == 'yes' ) {
$visbility_class[] = 'hidden_option';
}
if ( $value['hide_if_checked'] == 'option' ) {
$visbility_class[] = 'hide_options_if_checked';
}
if ( $value['show_if_checked'] == 'option' ) {
$visbility_class[] = 'show_options_if_checked';
}
if ( ! isset( $value['checkboxgroup'] ) || 'start' == $value['checkboxgroup'] ) {
?>
<tr valign="top" class="<?php echo esc_attr( implode( ' ', $visbility_class ) ); ?>">
<th scope="row" class="titledesc"><?php echo esc_html( $value['title'] ); ?></th>
<td class="forminp forminp-checkbox">
<fieldset>
<?php
} else {
?>
<fieldset class="<?php echo esc_attr( implode( ' ', $visbility_class ) ); ?>">
<?php
}
if ( ! empty( $value['title'] ) ) {
?>
<legend class="screen-reader-text"><span><?php echo esc_html( $value['title'] ); ?></span></legend>
<?php
}
?>
<label for="<?php echo esc_attr( $value['id'] ); ?>">
<input
name="<?php echo esc_attr( $value['id'] ); ?>"
id="<?php echo esc_attr( $value['id'] ); ?>"
type="checkbox"
value="1"
<?php checked( $option_value, 'yes' ); ?>
<?php echo esc_html( implode( ' ', $custom_attributes ) ); ?>
/> <?php echo wp_kses_post( $description ); ?>
</label> <?php echo wp_kses_post( $tip ); ?>
<?php
if ( ! isset( $value['checkboxgroup'] ) || 'end' == $value['checkboxgroup'] ) {
?>
</fieldset>
</td>
</tr>
<?php
} else {
?>
</fieldset>
<?php
}
break;
// Default: run an action
default:
do_action( 'sportspress_admin_field_' . $value['type'], $value );
break;
}
}
}
/**
* Save admin fields.
*
* Loops though the sportspress options array and outputs each field.
*
* @access public
* @param array $options Opens array to output
* @return bool
*/
public static function save_fields( $options ) {
if ( empty( $_POST ) ) {
return false;
}
// Options to update will be stored here
$update_options = array();
// Loop options and get values to save
foreach ( $options as $value ) {
if ( ! isset( $value['id'] ) ) {
continue;
}
$type = isset( $value['type'] ) ? sanitize_key( $value['type'] ) : '';
// Get the option name
$option_value = null;
switch ( $type ) {
// Standard types
case 'checkbox':
if ( isset( $_POST[ $value['id'] ] ) ) {
$option_value = 'yes';
} else {
$option_value = 'no';
}
break;
case 'textarea':
if ( isset( $_POST[ $value['id'] ] ) ) {
$option_value = wp_kses_post( trim( stripslashes( sanitize_textarea_field( wp_unslash( $_POST[ $value['id'] ] ) ) ) ) );
} else {
$option_value = '';
}
break;
case 'text':
case 'email':
case 'number':
case 'select':
case 'groupselect':
case 'sport':
case 'color':
case 'password':
case 'radio':
if ( isset( $_POST[ $value['id'] ] ) ) {
$option_value = sanitize_text_field( wp_unslash( $_POST[ $value['id'] ] ) );
} else {
$option_value = '';
}
break;
// Special types
case 'multiselect':
case 'multi_select_countries':
// Get countries array
if ( isset( $_POST[ $value['id'] ] ) ) {
$selected_countries = array_map( 'sanitize_text_field', array_map( 'wp_unslash', (array) $_POST[ $value['id'] ] ) ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput
} else {
$selected_countries = array();
}
$option_value = $selected_countries;
break;
// Custom handling
default:
do_action( 'sportspress_update_option_' . $type, $value );
break;
}
if ( ! is_null( $option_value ) ) {
// Check if option is an array
if ( strstr( $value['id'], '[' ) ) {
parse_str( $value['id'], $option_array );
// Option name is first key
$option_name = current( array_keys( $option_array ) );
// Get old option value
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();
}
// Set keys and value
$key = key( $option_array[ $option_name ] );
$update_options[ $option_name ][ $key ] = $option_value;
// Single value
} else {
$update_options[ $value['id'] ] = $option_value;
}
}
// Custom handling
do_action( 'sportspress_update_option', $value );
}
// Now save the options
foreach ( $update_options as $name => $value ) {
update_option( $name, $value );
}
return true;
}
}
endif;