s ) ) { foreach ( array_keys( $this->publicize->get_services( 'all' ) ) as $service ) { $choices = $this->get_customize_select( $service ); if ( empty( $choices ) ) { continue; } $wp_customize->add_setting( "jetpack_options[social_links][$service]", array( 'type' => 'option', 'default' => '', ) ); $wp_customize->add_control( "jetpack-$service", array( 'label' => $this->publicize->get_service_label( $service ), 'section' => 'jetpack_social_links', 'settings' => "jetpack_options[social_links][$service]", 'type' => 'select', 'choices' => $choices, ) ); } } } /** * Sanitizes social links. * * @param array $option The incoming values to be sanitized. * @return array */ public function sanitize_link( $option ) { foreach ( $this->services as $service ) { if ( ! empty( $option['social_links'][ $service ] ) ) { $option['social_links'][ $service ] = esc_url_raw( $option['social_links'][ $service ] ); } else { unset( $option['social_links'][ $service ] ); } } return $option; } /** * Returns whether there are any social links set. * * @return bool */ public function has_social_links() { return ! empty( $this->links ); } /** * Return available social links. * * @return array */ public function get_social_links() { return $this->links; } /** * Short-circuits get_option and get_theme_mod calls. * * @param string $link The incoming value to be replaced. * @return string $link The social link that we've got. */ public function get_social_link_filter( $link ) { if ( preg_match( '/_jetpack-(.+)$/i', current_filter(), $matches ) && ! empty( $this->links[ $matches[1] ] ) ) { return $this->links[ $matches[1] ]; } return $link; } /** * Puts together an array of choices for a specific service. * * @param string $service The social service. * @return array An associative array with profile links and display names. */ private function get_customize_select( $service ) { $choices = array( '' => __( '— Select —', 'jetpack-classic-theme-helper' ), ); if ( isset( $this->links[ $service ] ) ) { $choices[ $this->links[ $service ] ] = $this->links[ $service ]; } if ( class_exists( Publicize::class ) ) { $connected_services = $this->publicize->get_services( 'connected' ); if ( isset( $connected_services[ $service ] ) ) { foreach ( $connected_services[ $service ] as $c ) { $profile_link = $this->publicize->get_profile_link( $service, $c ); if ( false === $profile_link ) { continue; } $choices[ $profile_link ] = $this->publicize->get_display_name( $service, $c ); } } } if ( 1 === count( $choices ) ) { return array(); } return $choices; } /** * Back-compat function for versions prior to 4.0. */ private function is_customize_preview() { global $wp_customize; return is_a( $wp_customize, 'WP_Customize_Manager' ) && $wp_customize->is_preview(); } } } // - end if ( ! class_exists( 'Social_Links' )