%@ Ã@ 8@ (z p@ @ &2 X@ @ @ p@ w ȋ@ @ xz g https://Dittgen.hegau1.de/wp-content/plugins/the-events-calendar/build/css/tribe-events-single-full.css a /** * An instance of the context the View will use to render, if any. * * @var Context */ c /** * Whether the View instance should manage the URL * * @since 4.9.7 * * @var bool */ eՖU +` P N R ՖU P N > \pՖU 0 O > @ W eՖU ` P R ՖU P > \pՖU 0 > %@ P%@ eՖU ` P R ՖU P > \pՖU 0 > @ eՖU ` P R ՖU P > \pՖU 0 > (^@ mՖU ` P ՖU P > \pՖU 0 > " ! 0# 04@ e@ P @H@ @ 0 X @ #&~U*Z Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps &= S sts/ `U x )@ t.php Z /** * Interface View_Interface * * @package Tribe\Events\Views\V2 * @since 4.9.2 */ e.php \ /** * Restores the loop variables by restoring the global query. * * @since 4.9.3 */ php ^ /** * Class First_Boot * * @since 5.1.5 * * @package Tribe\Events\Service_Providers */ ot.php c sts/ `U )@ php p \ /** * Sets up The Events Calendar default options on first boot. * * @since 5.1.5 */ Y /** * Class Provider * * @since 6.0.0 * * @package TEC\Events\Custom_Tables\V1 */ vider.php ] /** * Class Provider * * @since 6.0.0 * @package TEC\Events\Custom_Tables\V1\Tables */ .php d /** * Logs the error. * * @since 6.1.3 * * @param \Throwable $error The error to log. */ X /** * Class Notices * * @since 6.0.0 * * @package TEC\Events\Custom_Tables\V1 */ tices.php ` /** * Class Events. * * @since 6.0.0 * @package TEC\Events\Custom_Tables\V1\Migration; */ p @ `U Y Y )@ e /** * Class Provider. * * @since 6.0.0 * * @package TEC\Events\Custom_Tables\V1\Migration; */ @ `U @] @] )@ b /** * Class State. * * @since 6.0.0 * * @package TEC\Events\Custom_Tables\V1\Migration; */ ]iY WHERE p.post_type = %s AND p.post_parent = 0 AND created_by_migration.meta_value IS NULL [|2\ga pm ON p.ID = pm.post_id AND pm.meta_key = %s WHERE p.post_type = %s AND pm.meta_value = %s [ /** * Formulate an estimate on time to complete migration. * * @return float|int */ d /** * Class Strings. * * @since 6.0.0 * * @package TEC\Events\Custom_Tables\V1\Migration; */ e /** * Indicates the migration is not required at all. * * @since 6.0.0 * * @var string */ c /** * Indicates the migration cancel has completed. * * @since 6.0.0 * * @var string */ eader', 'wordpress-seo' ), ]; $this->permalink_cleanup_settings = [ 'clean_campaign_tracking_urls' => \__( 'Campaign tracking URL parameters', 'wordpress-seo' ), 'clean_permalinks' => \__( 'Unregistered URL parameters', 'wordpress-seo' ), ]; $this->search_cleanup_settings = [ 'search_cleanup' => \__( 'Filter search terms', 'wordpress-seo' ), 'search_cleanup_emoji' => \__( 'Filter searches with emojis and other special characters', 'wordpress-seo' ), 'search_cleanup_patterns' => \__( 'Filter searches with common spam patterns', 'wordpress-seo' ), 'deny_search_crawling' => \__( 'Prevent search engines from crawling site search URLs', 'wordpress-seo' ), 'redirect_search_pretty_urls' => \__( 'Redirect pretty URLs for search pages to raw format', 'wordpress-seo' ), ]; $this->unused_resources_settings = [ 'remove_emoji_scripts' => \__( 'Emoji scripts', 'wordpress-seo' ), 'deny_wp_json_crawling' => \__( 'Prevent search engines from crawling /wp-json/', 'wordpress-seo' ), ]; } /** * Adds content to the Crawl Cleanup tab. * * @deprecated 20.4 * @codeCoverageIgnore * * @param Yoast_Form $yform The yoast form object. */ public function add_crawl_settings_tab_content( $yform ) { _deprecated_function( __METHOD__, 'Yoast SEO 20.4' ); $this->add_crawl_settings( $yform, false ); } /** * Adds content to the Crawl Cleanup network tab. * * @param Yoast_Form $yform The yoast form object. */ public function add_crawl_settings_tab_content_network( $yform ) { $this->add_crawl_settings( $yform, true ); } /** * Print the settings sections. * * @param Yoast_Form $yform The Yoast form class. * * @return void */ private function add_crawl_settings( $yform ) { $this->print_toggles( $this->basic_settings, $yform, \__( 'Basic crawl settings', 'wordpress-seo' ) ); $this->print_toggles( $this->feed_settings, $yform, \__( 'Feed crawl settings', 'wordpress-seo' ) ); $this->print_toggles( $this->unused_resources_settings, $yform, \__( 'Remove unused resources', 'wordpress-seo' ) ); $first_search_setting = \array_slice( $this->search_cleanup_settings, 0, 1 ); $rest_search_settings = \array_slice( $this->search_cleanup_settings, 1 ); $search_settings_toggles = [ 'off' => \__( 'Disabled', 'wordpress-seo' ), 'on' => \__( 'Enabled', 'wordpress-seo' ), ]; $this->print_toggles( $first_search_setting, $yform, \__( 'Search cleanup settings', 'wordpress-seo' ), $search_settings_toggles ); $this->print_toggles( $rest_search_settings, $yform, '', $search_settings_toggles ); $permalink_warning = \sprintf( /* Translators: %1$s expands to an opening anchor tag for a link leading to the Yoast SEO page of the Permalink Cleanup features, %2$s expands to a closing anchor tag. */ \esc_html__( 'These are expert features, so make sure you know what you\'re doing before removing the parameters. %1$sRead more about how your site can be affected%2$s.', 'wordpress-seo' ), '', '' ); $this->print_toggles( $this->permalink_cleanup_settings, $yform, \__( 'Permalink cleanup settings', 'wordpress-seo' ), [], $permalink_warning ); // Add the original option as hidden, so as not to lose any values if it's disabled and the form is saved. $yform->hidden( 'clean_permalinks_extra_variables', 'clean_permalinks_extra_variables' ); } /** * Prints a list of toggles for an array of settings with labels. * * @param array $settings The settings being displayed. * @param Yoast_Form $yform The Yoast form class. * @param string $title Optional title for the settings being displayed. * @param array $toggles Optional naming of the toggle buttons. * @param string $warning Optional warning to be displayed above the toggles. * * @return void */ private function print_toggles( array $settings, Yoast_Form $yform, $title = '', $toggles = [], $warning = '' ) { if ( ! empty( $title ) ) { echo '
'; if ( \current_user_can( 'manage_options' ) ) { echo \sprintf( /* translators: 1: Link start tag to the Permalinks settings page, 2: Link closing tag. */ \esc_html__( 'This feature is disabled when your site is not using %1$spretty permalinks%2$s.', 'wordpress-seo' ), '', '' ); } else { echo \esc_html__( 'This feature is disabled when your site is not using pretty permalinks.', 'wordpress-seo' ); } echo '
'; } } } /** * Checks if the feature should be disabled due to non-pretty permalinks. * * @param string $setting The setting to be displayed. * * @return bool */ protected function should_feature_be_disabled_permalink( $setting ) { return ( \in_array( $setting, [ 'clean_permalinks', 'clean_campaign_tracking_urls' ], true ) && empty( \get_option( 'permalink_structure' ) ) ); } /** * Checks if the feature should be disabled due to the site being a multisite. * * @param string $setting The setting to be displayed. * * @return bool */ protected function should_feature_be_disabled_multisite( $setting ) { return ( \in_array( $setting, [ 'deny_search_crawling', 'deny_wp_json_crawling' ], true ) && \is_multisite() ); } }