/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/elementor/core/base/background-task-manager.phpp!p/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/Subscriber.php7 jUP9 jUAjU jU jU5hujU/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/seo-by-rank-math/vendor/composer/../../includes/opengraph/class-opengraph.php/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/seo-by-rank-math/includes/opengraph/class-opengraph.ph oU jU༯/vhosts/kag-management.de/httpdocs/wp-content/plugins/better-wp-security/vendor-prod/patchstack/firewall/src/Processor.phpadTra jU jUv/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/wp-rocket/inc/Engine/Media/Lazyload/CanLazyloadTrait.phpdav+1  jU@jU jU5himana/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/seo-by-rank-math-pro/vendor/composer/../../includes/plugin-update/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/seo-by-rank-math-pro/includes/plugin-update oU jU༯/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/seo-by-rank-math-pro/includes/modules/analytics/class-pageviews.php  jU jUi/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/wp-rocket/inc/Engine/License/Subscriber.php jUpjU@jU jU5hgfjU/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/elementor//includes/settings/settings.php/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/elementor/includes/settings/settings.phpuP QoU jU jU jU jU5hff/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/elementor-pro/modules/library/moduP oUH[4l^/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/wp-rocket/inc/Engine/CDN/CDN.php7jUNjU5hii/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/elementor/includes/controls/groups/base.phpcies/Psr/ContaqPjU jUjU_jU_jU@}jUjU-jU  oUQ % jU༯5h]]mana/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/seo-by-rank-math/includes/adminp,jRe/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/wp-rocket/inc/Engine/CDN/Subscriber.php` jUA 9jUjUjUjUERCP@A%nky%^Z)/\[(\[?)(cky_show_desc)(?![\w-])([^\]\/]*(?:\/(?!\])[^\]\/]*)*?)(?:(\/)\]|\](?:([^\[]*+(?:\[(?!\/\2\])[^\[]*+)*+)\[\/\2\])?)(\]?)/p`QoU poUubscriber.phpp a oU% jU༯5hjU/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/seo-by-rank-math/includes/modules/schema/blocks/schema/class-block-schema.phpjU`oU0 1oU  jU0# jUk/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/wp-rocket/inc/Engine/CDN/Admin/Subscriber.phpjU1pjU`jU jUpjU5h__jU/var/www/vhosts/kag-management.de/httpdocs/wp-content/plugins/elementor/includes/conditions.phpposer/..t[ $key ] = $value->$field; } else { $newlist[ $key ] = $value[ $field ]; } } $this->output = $newlist; return $this->output; } /* * When index_key is not set for a particular item, push the value * to the end of the stack. This is how array_column() behaves. */ foreach ( $this->output as $value ) { if ( is_object( $value ) ) { if ( isset( $value->$index_key ) ) { $newlist[ $value->$index_key ] = $value->$field; } else { $newlist[] = $value->$field; } } else { if ( isset( $value[ $index_key ] ) ) { $newlist[ $value[ $index_key ] ] = $value[ $field ]; } else { $newlist[] = $value[ $field ]; } } } $this->output = $newlist; return $this->output; } /** * Sorts the input array based on one or more orderby arguments. * * @since 4.7.0 * * @param string|array $orderby Optional. Either the field name to order by or an array * of multiple orderby fields as $orderby => $order. * @param string $order Optional. Either 'ASC' or 'DESC'. Only used if $orderby * is a string. * @param bool $preserve_keys Optional. Whether to preserve keys. Default false. * @return array The sorted array. */ public function sort( $orderby = array(), $order = 'ASC', $preserve_keys = false ) { if ( empty( $orderby ) ) { return $this->output; } if ( is_string( $orderby ) ) { $orderby = array( $orderby => $order ); } foreach ( $orderby as $field => $direction ) { $orderby[ $field ] = 'DESC' === strtoupper( $direction ) ? 'DESC' : 'ASC'; } $this->orderby = $orderby; if ( $preserve_keys ) { uasort( $this->output, array( $this, 'sort_callback' ) ); } else { usort( $this->output, array( $this, 'sort_callback' ) ); } $this->orderby = array(); return $this->output; } /** * Callback to sort an array by specific fields. * * @since 4.7.0 * * @see WP_List_Util::sort() * * @param object|array $a One object to compare. * @param object|array $b The other object to compare. * @return int 0 if both objects equal. -1 if second object should come first, 1 otherwise. */ private function sort_callback( $a, $b ) { if ( empty( $this->orderby ) ) { return 0; } $a = (array) $a; $b = (array) $b; foreach ( $this->orderby as $field => $direction ) { if ( ! isset( $a[ $field ] ) || ! isset( $b[ $field ] ) ) { continue; } if ( $a[ $field ] == $b[ $field ] ) { continue; } $results = 'DESC' === $direction ? array( 1, -1 ) : array( -1, 1 ); if ( is_numeric( $a[ $field ] ) && is_numeric( $b[ $field ] ) ) { return ( $a[ $field ] < $b[ $field ] ) ? $results[0] : $results[1]; } return 0 > strcmp( $a[ $field ], $b[ $field ] ) ? $results[0] : $results[1]; } return 0; } }