name ); if ( ! empty( $parsed_args['feed_image'] ) || ! empty( $parsed_args['feed'] ) ) { $link .= ' '; if ( empty( $parsed_args['feed_image'] ) ) { $link .= '('; } $link .= ''; } else { $link .= $name; } $link .= ''; if ( empty( $parsed_args['feed_image'] ) ) { $link .= ')'; } } if ( $parsed_args['optioncount'] ) { $link .= ' (' . $posts . ')'; } $return .= $link; $return .= ( 'list' === $parsed_args['style'] ) ? '' : ', '; } $return = rtrim( $return, ', ' ); if ( $parsed_args['echo'] ) { echo $return; } else { return $return; } } /** * Determines whether this site has more than one author. * * Checks to see if more than one author has published posts. * * For more information on this and similar theme functions, check out * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ * Conditional Tags} article in the Theme Developer Handbook. * * @since 3.2.0 * * @global wpdb $wpdb WordPress database abstraction object. * * @return bool Whether or not we have more than one author */ function is_multi_author() { global $wpdb; $is_multi_author = get_transient( 'is_multi_author' ); if ( false === $is_multi_author ) { $rows = (array) $wpdb->get_col( "SELECT DISTINCT post_author FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' LIMIT 2" ); $is_multi_author = 1 < count( $rows ) ? 1 : 0; set_transient( 'is_multi_author', $is_multi_author ); } /** * Filters whether the site has more than one author with published posts. * * @since 3.2.0 * * @param bool $is_multi_author Whether $is_multi_author should evaluate as true. */ return apply_filters( 'is_multi_author', (bool) $is_multi_author ); } /** * Helper function to clear the cache for number of authors. * * @since 3.2.0 * @access private */ function __clear_multi_author_cache() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore delete_transient( 'is_multi_author' ); } rch'] ) { $this->ensure_class( 'Automattic\Jetpack\Search\Initializer' ) && $this->ensure_feature( 'search' ); } if ( $this->config['publicize'] ) { $this->ensure_class( 'Automattic\Jetpack\Publicize\Publicize_UI' ) && $this->ensure_class( 'Automattic\Jetpack\Publicize\Publicize' ) && $this->ensure_feature( 'publicize' ); } if ( $this->config['wordads'] ) { $this->ensure_class( 'Automattic\Jetpack\WordAds\Initializer' ) && $this->ensure_feature( 'wordads' ); } if ( $this->config['waf'] ) { $this->ensure_class( 'Automattic\Jetpack\Waf\Waf_Initializer' ) && $this->ensure_feature( 'waf' ); } if ( $this->config['videopress'] ) { $this->ensure_class( 'Automattic\Jetpack\VideoPress\Initializer' ) && $this->ensure_feature( 'videopress' ); } if ( $this->config['stats'] ) { $this->ensure_class( 'Automattic\Jetpack\Stats\Main' ) && $this->ensure_feature( 'stats' ); } if ( $this->config['stats_admin'] ) { $this->ensure_class( 'Automattic\Jetpack\Stats_Admin\Main' ) && $this->ensure_feature( 'stats_admin' ); } if ( $this->config['blaze'] ) { $this->ensure_class( 'Automattic\Jetpack\Blaze' ) && $this->ensure_feature( 'blaze' ); } if ( $this->config['yoast_promo'] ) { $this->ensure_class( 'Automattic\Jetpack\Yoast_Promo' ) && $this->ensure_feature( 'yoast_promo' ); } if ( $this->config['import'] ) { $this->ensure_class( 'Automattic\Jetpack\Import\Main' ) && $this->ensure_feature( 'import' ); } } /** * Returns true if the required class is available and alerts the user if it's not available * in case the site is in debug mode. * * @param String $classname a fully qualified class name. * @param Boolean $log_notice whether the E_USER_NOTICE should be generated if the class is not found. * * @return Boolean whether the class is available. */ protected function ensure_class( $classname, $log_notice = true ) { $available = class_exists( $classname ); if ( $log_notice && ! $available && defined( 'WP_DEBUG' ) && WP_DEBUG ) { trigger_error( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_trigger_error sprintf( /* translators: %1$s is a PHP class name. */ esc_html__( 'Unable to load class %1$s. Please add the package that contains it using composer and make sure you are requiring the Jetpack autoloader', 'jetpack-config' ), esc_html( $classname ) ), E_USER_NOTICE ); } return $available; } /** * Ensures a feature is enabled, sets it up if it hasn't already been set up. * * @param String $feature slug of the feature. * @return Integer either FEATURE_ENSURED, FEATURE_ALREADY_ENSURED or FEATURE_NOT_AVAILABLE constants. */ protected function ensure_feature( $feature ) { $method = 'enable_' . $feature; if ( ! method_exists( $this, $method ) ) { return self::FEATURE_NOT_AVAILABLE; } if ( did_action( 'jetpack_feature_' . $feature . '_enabled' ) ) { return self::FEATURE_ALREADY_ENSURED; } $this->{ $method }(); /** * Fires when a specific Jetpack package feature is initalized using the Config package. * * @since 1.1.0 */ do_action( 'jetpack_feature_' . $feature . '_enabled' ); return self::FEATURE_ENSURED; } /** * Enables the JITM feature. */ protected function enable_jitm() { if ( class_exists( 'Automattic\Jetpack\JITMS\JITM' ) ) { JITMS_JITM::configure(); } else { // Provides compatibility with jetpack-jitm get_feature_options( 'publicize' ); if ( ! empty( $options['force_refresh'] ) ) { Publicize_Setup::$refresh_plan_info = true; } } /** * Enables WordAds. */ protected function enable_wordads() { Jetpack_WordAds_Main::init(); } /** * Enables Waf. */ protected function enable_waf() { Jetpack_Waf_Main::init(); return true; } /** * Enables VideoPress. */ protected function enable_videopress() { VideoPress_Pkg_Initializer::init(); return true; } /** * Enables Stats. */ protected function enable_stats() { Stats_Main::init(); return true; } /** * Enables Stats Admin. */ protected function enable_stats_admin() { Stats_Admin_Main::init(); return true; } /** * Handles VideoPress options */ protected function ensure_options_videopress() { $options = $this->get_feature_options( 'videopress' ); if ( ! empty( $options ) ) { VideoPress_Pkg_Initializer::update_init_options( $options ); } return true; } /** * Enables Blaze. */ protected function enable_blaze() { Blaze::init(); return true; } /** * Enables Yoast Promo. */ protected function enable_yoast_promo() { Yoast_Promo::init(); return true; } /** * Enables the Import feature. */ protected function enable_import() { Import_Main::configure(); return true; } /** * Setup the Connection options. */ protected function ensure_options_connection() { $options = $this->get_feature_options( 'connection' ); if ( ! empty( $options['slug'] ) ) { // The `slug` and `name` are removed from the options because they need to be passed as arguments. $slug = $options['slug']; unset( $options['slug'] ); $name = $slug; if ( ! empty( $options['name'] ) ) { $name = $options['name']; unset( $options['name'] ); } ( new Plugin( $slug ) )->add( $name, $options ); } return true; } /** * Setup the Identity Crisis options. * * @return bool */ protected function ensure_options_identity_crisis() { $options = $this->get_feature_options( 'identity_crisis' ); if ( is_array( $options ) && count( $options ) ) { add_filter( 'jetpack_idc_consumers', function ( $consumers ) use ( $options ) { $consumers[] = $options; return $consumers; } ); } return true; } /** * Setup the Sync options. */ protected function ensure_options_sync() { $options = $this->get_feature_options( 'sync' ); if ( method_exists( 'Automattic\Jetpack\Sync\Main', 'set_sync_data_options' ) ) { Sync_Main::set_sync_data_options( $options ); } return true; } /** * Temporary save initialization options for a feature. * * @param string $feature The feature slug. * @param array $options The options. * * @return bool */ protected function set_feature_options( $feature, array $options ) { if ( $options ) { $this->feature_options[ $feature ] = $options; } return true; } /** * Get initialization options for a feature from the temporary storage. * * @param string $feature The feature slug. * * @return array */ protected function get_feature_options( $feature ) { return empty( $this->feature_options[ $feature ] ) ? array() : $this->feature_options[ $feature ]; } }