id = 'general'; $this->label = __( 'General', 'sportspress' ); add_filter( 'sportspress_settings_tabs_array', array( $this, 'add_settings_page' ), 20 ); add_action( 'sportspress_settings_' . $this->id, array( $this, 'output' ) ); add_action( 'sportspress_admin_field_country', array( $this, 'country_setting' ) ); add_action( 'sportspress_admin_field_frontend_styles', array( $this, 'frontend_styles_setting' ) ); add_action( 'sportspress_settings_save_' . $this->id, array( $this, 'save' ) ); } /** * Get settings array * * @return array */ public function get_settings() { $presets = SP_Admin_Sports::get_preset_options(); $settings = array( array( 'title' => __( 'General Options', 'sportspress' ), 'type' => 'title', 'desc' => '', 'id' => 'general_options' ), array( 'type' => 'country' ), array( 'title' => __( 'Sport', 'sportspress' ), 'id' => 'sportspress_sport', 'default' => 'soccer', 'type' => 'select', 'options' => $presets, ), array( 'title' => __( 'Mode', 'sportspress' ), 'id' => 'sportspress_mode', 'default' => 'team', 'type' => 'select', 'options' => array( 'team' => _x( 'Team', 'mode select', 'sportspress' ), 'player' => _x( 'Individual', 'mode select', 'sportspress' ), ), ), array( 'title' => __( 'Google Maps', 'sportspress' ), 'id' => 'sportspress_map_type', 'default' => 'ROADMAP', 'type' => 'select', 'options' => array( 'ROADMAP' => __( 'Default', 'sportspress' ), 'SATELLITE' => __( 'Satellite', 'sportspress' ), 'HYBRID' => __( 'Hybrid', 'sportspress' ), 'TERRAIN' => __( 'Terrain', 'sportspress' ), ), ), array( 'type' => 'sectionend', 'id' => 'general_options' ), array( 'title' => __( 'Styles and Scripts', 'sportspress' ), 'type' => 'title', 'desc' => '', 'id' => 'script_styling_options' ), array( 'type' => 'frontend_styles' ), ); if ( ( $styles = SP_Frontend_Scripts::get_styles() ) && array_key_exists( 'sportspress-general', $styles ) ): $settings = array_merge( $settings, array( array( 'title' => __( 'Align', 'sportspress' ), 'id' => 'sportspress_table_text_align', 'default' => 'default', 'type' => 'radio', 'options' => array( 'default' => __( 'Default', 'sportspress' ), 'left' => __( 'Left', 'sportspress' ), 'center' => __( 'Center', 'sportspress' ), 'right' => __( 'Right', 'sportspress' ), ), ), array( 'title' => __( 'Padding', 'sportspress' ), 'id' => 'sportspress_table_padding', 'class' => 'small-text', 'default' => null, 'placeholder' => __( 'Auto', 'sportspress' ), 'desc' => 'px', 'type' => 'number', 'custom_attributes' => array( 'step' => 1 ), ), )); endif; $settings = array_merge( $settings, array( array( 'title' => __( 'Custom CSS', 'sportspress' ), 'id' => 'sportspress_custom_css', 'css' => 'width:100%; height: 130px;', 'type' => 'textarea', ), array( 'title' => __( 'Scripts', 'sportspress' ), 'desc' => __( 'Responsive tables', 'sportspress' ), 'id' => 'sportspress_enable_responsive_tables', 'default' => 'yes', 'type' => 'checkbox', 'checkboxgroup' => 'start', 'desc_tip' => __( 'This will enable a script allowing the tables to be responsive.', 'sportspress' ), ), array( 'desc' => __( 'Sortable tables', 'sportspress' ), 'id' => 'sportspress_enable_sortable_tables', 'default' => 'yes', 'type' => 'checkbox', 'checkboxgroup' => '', 'desc_tip' => __( 'This will enable a script allowing the tables to be sortable.', 'sportspress' ), ), array( 'desc' => __( 'Live countdowns', 'sportspress' ), 'id' => 'sportspress_enable_live_countdowns', 'default' => 'yes', 'type' => 'checkbox', 'checkboxgroup' => 'end', 'desc_tip' => __( 'This will enable a script allowing the countdowns to be animated.', 'sportspress' ), ), array( 'title' => __( 'Header Offset', 'sportspress' ), 'id' => 'sportspress_header_offset', 'class' => 'small-text', 'default' => null, 'placeholder' => __( 'Auto', 'sportspress' ), 'desc' => 'px', 'type' => 'number', 'custom_attributes' => array( 'step' => 1 ), ), array( 'type' => 'sectionend', 'id' => 'script_styling_options' ), )); return apply_filters( 'sportspress_general_settings', $settings ); // End general settings } /** * Save settings */ public function save() { if ( isset( $_POST['sportspress_sport'] ) && ! empty( $_POST['sportspress_sport'] ) && get_option( 'sportspress_sport', null ) != $_POST['sportspress_sport'] ): $sport = $_POST['sportspress_sport']; SP_Admin_Sports::apply_preset( $sport ); update_option( '_sp_needs_welcome', 0 ); endif; $settings = $this->get_settings(); SP_Admin_Settings::save_fields( $settings ); if ( isset( $_POST['sportspress_default_country'] ) ) update_option( 'sportspress_default_country', $_POST['sportspress_default_country'] ); update_option( 'sportspress_enable_frontend_css', isset( $_POST['sportspress_enable_frontend_css'] ) ? 'yes' : 'no' ); if ( isset( $_POST['sportspress_frontend_css_primary'] ) ) { // Save settings $primary = ( ! empty( $_POST['sportspress_frontend_css_primary'] ) ) ? sp_format_hex( $_POST['sportspress_frontend_css_primary'] ) : ''; $background = ( ! empty( $_POST['sportspress_frontend_css_background'] ) ) ? sp_format_hex( $_POST['sportspress_frontend_css_background'] ) : ''; $text = ( ! empty( $_POST['sportspress_frontend_css_text'] ) ) ? sp_format_hex( $_POST['sportspress_frontend_css_text'] ) : ''; $heading = ( ! empty( $_POST['sportspress_frontend_css_heading'] ) ) ? sp_format_hex( $_POST['sportspress_frontend_css_heading'] ) : ''; $link = ( ! empty( $_POST['sportspress_frontend_css_link'] ) ) ? sp_format_hex( $_POST['sportspress_frontend_css_link'] ) : ''; $colors = array( 'primary' => $primary, 'background' => $background, 'text' => $text, 'heading' => $heading, 'link' => $link, ); update_option( 'sportspress_frontend_css_colors', $colors ); } } /** * Country settings * * @access public * @return void */ public function country_setting() { $selected = (string) get_option( 'sportspress_default_country', 'US' ); $continents = SP()->countries->continents; ?>