ifZgZ:qCiZPP:B aZ:<A`:AgZ8AgZxA(˧AxgZ(AgZgZ0gZgZgZ蒥AgZAgZgZ(A<pZoZhgZZpjtAj<EApj`aZ paZ daZ faZ aZ aZ aZ aZ aZ ` B`aZ paZ aZ aZ BaZ aZ BaZ aZ BaZ nB`aZ paZ <aZ aZ =aZ aZ <aZ aZ paZ PoB`aZ paZ BaZ aZ BaZ aZ <aZ aZ =aZ Pqu`aZ paZ uaZ aZ RaZ aZ QaZ aZ AaZ q<`aZ paZ aZ aZ =aZ aZ <aZ aZ paZ PsB`aZ paZ aZ aZ BaZ aZ BaZ aZ BaZ s<`aZ paZ saZ aZ aZ 8aZ +aZ aZ QaZ w (mP/var/www/vhosts/garego.de/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/dynamic_field/dynamic_field.phpd[hZ/var/www/vhosts/garego.de/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.phpzJ}5x/var/www/vhosts/garego.de/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.php}mhZmhZgZmhZ"PAЕ}#QPdZ`A(A߮AgZxAA8AhAXgZxgZeAAcAحAxA8gZ`gZgZpwAQAQmHpIf you are using a cache plugin we recommend that you exclude the page containing the contact form from caching.t.php ^pv/var/www/vhosts/garego.de/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.phpPA|-~iAvailable form elements are: single line Input elements, Textareas, Checkboxes and Select-Dropdown menus.})PAܠ?twEnter one or more reply to E-Mail addresses (separated by comma) for the autoresponder mail. Leave blank if not needed.*eZ=KeZ1,QpA,PA4A2`Av [-(gZ{``Z.l+ U3P8aZ`4=`Z5PAxgZAdZpu`Z`uZ0fA0A@ώZΎZ0|fZ:4s`Z4}4. aZ`;=̎Z͎ZPgZA6H}6=7EA744H}4+EA>8 aZ*or_message ) ); } /** * Fires after getting the latest report. * * @since 1.9.2 * * @see https://developers.google.com/speed/docs/insights/v4/reference/pagespeedapi/runpagespeed * * @param object $report Object with report data. */ if ( isset( $results->data ) && ! is_wp_error( $results->data ) ) { do_action( 'wphb_get_performance_report', $results->data ); } if ( $skip_db ) { return; } // Only save reports from Performance module. Settings::update( 'wphb-last-report', $results, false ); } /** * Check if time enough has passed to make another test ( 5 minutes ) * * @param bool|wp_error|array|object $last_report Last report. * * @return bool|integer True if a new test is available or the time in minutes remaining for next test */ public static function can_run_test( $last_report = false ) { if ( ! $last_report || is_wp_error( $last_report ) ) { $last_report = self::get_last_report(); } $current_gmt_time = time(); if ( $last_report && ! is_wp_error( $last_report ) ) { $data_time = $last_report->data->time; if ( ( $data_time + 300 ) < $current_gmt_time ) { return true; } else { $remaining = ceil( ( ( $data_time + 300 ) - $current_gmt_time ) / 60 ); return absint( $remaining ); } } return true; } /** * Set last report dismissed status to true * * @since 1.8 * * @param bool $dismiss Enable or disable dismissed report status. * * @return bool */ public static function dismiss_report( $dismiss ) { Settings::update_setting( 'dismissed', (bool) $dismiss, 'performance' ); if ( (bool) $dismiss ) { // Ignore report in the Hub. $api = Utils::get_api(); $results = $api->performance->ignore(); if ( is_wp_error( $results ) ) { return $results->get_error_message(); } } return true; } /** * Return whether the last report was dismissed * * @since 1.8 * * @param bool|wp_error|array|object $last_report Last report. * @return bool True if user dismissed report or false of there's no site option */ public static function report_dismissed( $last_report = false ) { if ( Settings::get_setting( 'dismissed', 'performance' ) ) { return true; } if ( ! $last_report || is_wp_error( $last_report ) ) { $last_report = self::get_last_report(); } if ( isset( $last_report->data->ignored ) && $last_report->data->ignored ) { return true; } return false; } /** * Get the class for a specific type. Used to select proper icons and styles. * * @since 2.0.0 * * @param int $score Score value. * @param string $type Type of item. Accepts: score, icon. * * @return string */ public static function get_impact_class( $score = 0, $type = 'score' ) { if ( ! in_array( $type, array( 'score', 'icon' ), true ) ) { return ''; } // Make this method universal - either use 1 as a 100%, or 100 as 100%. if ( 0 < $score && 1 >= $score && is_float( $score ) ) { $score = $score * 100; } $impact_score_class = 'error'; $impact_icon_class = 'warning-alert'; if ( 90 <= (int) $score ) { $impact_score_class = 'success'; $impact_icon_class = 'check-tick'; } elseif ( 50 <= (int) $score ) { $impact_score_class = 'warning'; $impact_icon_class = 'warning-alert'; } return 'score' === $type ? $impact_score_class : $impact_icon_class; } /** * Get the lowest score from a list of audits and return the appropriate class. * * @since 2.0.0 * * @param array $audits Array with audits. * * @return string */ public static function get_audits_class( $audits ) { if ( is_null( $audits ) ) { return 'warning'; } $lowest_score = 1; foreach ( $audits as $audit ) { if ( ! isset( $audit->score ) ) { continue; } if ( $lowest_score > $audit->score ) { $lowest_score = $audit->score; } } return self::get_impact_class( $lowest_score ); } /** * Triggered when a performance scan is initialized */ public function on_init_performance_scan() { if ( Utils::is_member() ) { return; } $options = $this->get_options(); $options['reports'] = false; $this->update_options( $options ); } /** * Return audits mapped to metrics that they affect. * * @since 3.1.0 * * @return array */ public static function get_maps() { return array( 'fcp' => array( 'server-response-time', 'render-blocking-resources', 'redirects', 'critical-request-chains', 'uses-text-compression', 'uses-rel-preconnect', 'uses-rel-preload', 'font-display', 'unminified-javascript', 'unminified-css', 'unused-css-rules', ), 'lcp' => array( 'server-response-time', 'render-blocking-resources', 'redirects', 'critical-request-chains', 'uses-text-compression', 'uses-rel-preconnect', 'uses-rel-preload', 'font-display', 'unminified-javascript', 'unminified-css', 'unused-css-rules', 'largest-contentful-paint-element', 'preload-lcp-image', 'unused-javascript', 'efficient-animated-content', 'total-byte-weight', ), 'tbt' => array( 'long-tasks', 'third-party-summary', 'third-party-facades', 'bootup-time', 'mainthread-work-breakdown', 'dom-size', 'duplicated-javascript', 'legacy-javascript', ), 'cls' => array( 'layout-shift-elements', 'non-composited-animations', 'unsized-images', ), ); } /** * Return relevant metric IDs based on audit ID. * * @since 3.1.0 * * @param string $audit Audit ID. * * @return string Metric IDs, separated with a space. */ public static function get_relevant_metrics( $audit ) { $metrics = array(); foreach ( self::get_maps() as $metric => $audits ) { if ( ! in_array( $audit, $audits, true ) ) { continue; } $metrics[] = $metric; } return implode( ' ', $metrics ); } /** * Get audits for MP. * * @since 3.9.0 * * @return array */ public static function get_audits_for_mp() { $audits = array( 'opportunities' => array( 'mobile' => self::get_audits_from_performance_test( 'mobile', 'opportunities' ), 'desktop' => self::get_audits_from_performance_test( 'desktop', 'opportunities' ), ), 'diagnostics' => array( 'mobile' => self::get_audits_from_performance_test( 'mobile', 'diagnostics' ), 'desktop' => self::get_audits_from_performance_test( 'desktop', 'diagnostics' ), ), 'passed' => array( 'mobile' => self::get_audits_from_performance_test( 'mobile', 'passed' ), 'desktop' => self::get_audits_from_performance_test( 'desktop', 'passed' ), ), ); return $audits; } /** * Get audits from the performance test. * * @since 3.9.0 * * @param string $device Device type. * @param string $audit_type Audit type. * * @return string */ public static function get_audits_from_performance_test( $device = 'desktop', $audit_type = 'opportunities' ) { $last_report = self::get_last_report(); $get_audits = isset( $last_report->data->$device->audits->$audit_type ) ? $last_report->data->$device->audits->$audit_type : array(); $performance_audit = array(); if ( ! empty( $get_audits ) ) { foreach ( $get_audits as $key => $value ) { $performance_audit[] = $key; } } return ! empty( $performance_audit ) ? $performance_audit : 'na'; } /** Get performance report error message if any. * * @since 3.9.0 * * @param object $report Performance report. * * @return bool */ public static function get_performance_report_error( $report ) { $error_details = ''; // Is that a report with errors? if ( is_wp_error( $report ) ) { $error_details = $report->get_error_data(); } elseif ( $report && is_null( $report->data->desktop->metrics ) ) { $error_details = "The performance test didn't return any results"; } return $error_details; } /** * Get LCP submetrics for MP. * * @since 3.9.0 * * @return array */ public static function get_lcp_submetrics_for_mp() { $lcp_submetrics = array( 'lcp_ttfb' => array( 'mobile' => self::get_lcp_submetrics( 'mobile', 'TTFB' ), 'desktop' => self::get_lcp_submetrics( 'desktop', 'TTFB' ), ), 'lcp_load_delay' => array( 'mobile' => self::get_lcp_submetrics( 'mobile', 'Load Delay' ), 'desktop' => self::get_lcp_submetrics( 'desktop', 'Load Delay' ), ), 'lcp_render_delay' => array( 'mobile' => self::get_lcp_submetrics( 'mobile', 'Render Delay' ), 'desktop' => self::get_lcp_submetrics( 'desktop', 'Render Delay' ), ), 'lcp_load_time' => array( 'mobile' => self::get_lcp_submetrics( 'mobile', 'Load Time' ), 'desktop' => self::get_lcp_submetrics( 'desktop', 'Load Time' ), ), 'lcp_element' => array( 'mobile' => self::get_lcp_submetrics( 'mobile', 'passed', true ), 'desktop' => self::get_lcp_submetrics( 'desktop', 'passed', true ), ), ); return $lcp_submetrics; } /** * Get the LCP submetrics. * * @since 3.9.0 * * @param string $device Device type. * @param string $phase Phase. * @param bool $lcp_element LCP element. * * @return string */ public static function get_lcp_submetrics( $device = 'desktop', $phase = 'TTFB', $lcp_element = false ) { $report = self::get_last_report(); $lcp = 'largest-contentful-paint-element'; $submetrics = ''; $lcp_snippet = ''; if ( ! empty( $report->data->$device->audits->opportunities->$lcp->details->items[1]->items ) ) { $submetrics = $report->data->$device->audits->opportunities->$lcp->details->items[1]->items; $lcp_snippet = $report->data->$device->audits->opportunities->$lcp->details->items[0]->items[0]->node; } elseif ( ! empty( $report->data->$device->audits->diagnostics->$lcp->details->items[1]->items ) ) { $submetrics = $report->data->$device->audits->diagnostics->$lcp->details->items[1]->items; $lcp_snippet = $report->data->$device->audits->diagnostics->$lcp->details->items[0]->items[0]->node; } elseif ( ! empty( $report->data->$device->audits->passed->$lcp->details->items[1]->items ) ) { $submetrics = $report->data->$device->audits->passed->$lcp->details->items[1]->items; $lcp_snippet = $report->data->$device->audits->passed->$lcp->details->items[0]->items[0]->node; } if ( true === $lcp_element ) { return ! empty( $lcp_snippet->nodeLabel ) && ! empty( $lcp_snippet->snippet ) ? $lcp_snippet->nodeLabel . $lcp_snippet->snippet : 'na'; } if ( empty( $submetrics ) ) { return 'na'; } foreach ( $submetrics as $submetric ) { if ( $phase === $submetric->phase ) { return $submetric->timing; } } return 'na'; } /** * Returns the core web vitals status. * * @since 3.10.0 * * @param string $device Device type. * * @return bool */ public static function core_web_vitals_status( $device = 'desktop' ) { $report = self::get_last_report(); $field_data = isset( $report->data->{$device}->field_data ) ? $report->data->{$device}->field_data : null; if ( empty( $field_data ) ) { return 'na'; } // Get the relevant metrics. $lcp = ! empty( $field_data->LARGEST_CONTENTFUL_PAINT_MS->percentile ) ? $field_data->LARGEST_CONTENTFUL_PAINT_MS->percentile : null; $inp = ! empty( $field_data->INTERACTION_TO_NEXT_PAINT->percentile ) ? $field_data->INTERACTION_TO_NEXT_PAINT->percentile : null; $cls = ! empty( $field_data->CUMULATIVE_LAYOUT_SHIFT_SCORE->percentile ) ? $field_data->CUMULATIVE_LAYOUT_SHIFT_SCORE->percentile / 100 : null; // Thresholds for passing Core Web Vitals. $lcp_pass = null === $lcp ? true : $lcp <= 2500; $inp_pass = null === $inp ? true : $inp <= 200; $cls_pass = null === $cls ? true : $cls <= 0.1; // Return true if all metrics pass, false otherwise. return $lcp_pass && $inp_pass && $cls_pass ? 'pass' : 'fail'; } /** * Move audits without a score to the `passed` object. * * @since 3.13.0 * * @param object $psi_response PSI response. */ public static function move_audits_without_score( &$psi_response ) { if ( ! isset( $psi_response->data ) ) { return; } foreach ( array( 'desktop', 'mobile' ) as $platform ) { if ( ! isset( $psi_response->data->$platform->audits ) ) { continue; } $audits = $psi_response->data->$platform->audits; if ( ! isset( $audits->passed ) ) { $audits->passed = new \stdClass(); } foreach ( array( 'diagnostics', 'opportunities' ) as $audit_type ) { if ( isset( $audits->$audit_type ) ) { foreach ( $audits->$audit_type as $key => $audit ) { if ( ! isset( $audit->score ) ) { $audits->passed->$key = $audit; unset( $audits->$audit_type->$key ); } } } } } } }