- 3131.December.SundayNo events
- 0101.January.MondayNo events
- 0202.January.TuesdayNo events
- 0303.January.WednesdayNo events
- 0404.January.ThursdayNo events
- 0505.January.FridayNo events
- 0606.January.SaturdayNo events
blb /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/astra-sites/inc/lib/starter-templates-importer/importer/batch/st-batch-process-cleanup.php p rter/importer/batch/ g] /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/astra-sites/inc/lib/starter-templates-importer/importer/batch/st-batch-processing-customizer.php et['settings'][ /**
* handlePluginAPI function.
*
* @param mixed $result Default is false
* @param string $action Type of information
* @param object $args Plugin API arguments
*/ Xi' If you have found a bug, or have a question or feedback, or even if you have an idea for an extension, then come to my support forum and you can talk directly to the community and me. %;$ k1 $
U =$
U
U
U
U
U Y$ $
U s/# /**
* Elementor admin notice for minimum WordPress version.
*
* Warning when the site doesn't have the minimum required WordPress version.
*
* @since 1.5.0
*
* @return void
*/
/**
* Rep .ߊU P ? U P ` U ` @ + ߊU P I @ߊU @ > @A :$ %;$ fP fP
U %;$ /**
* Database.
*
* Holds the plugin database handler which is responsible for communicating
* with the database.
*
* @since 1.0.0
* @access public
*
* @var DB
*/ %;$ /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/Attribute.php /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/twig/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php ;
/var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Inject.php ' => /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Injectable.php /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/dependency-injection/php-di/php-di/src/CompiledContainer.php ();
/var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Compiler.php /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/dependency-injection/php-di/php-di/src/Container.php y( $social_p /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/dependency-injection/php-di/php-di/src/ContainerBuilder.php type' /var/www/vhosts/stadt-hornbach.de/neu.klosterstadt-hornbach.de/2024/wp-content/plugins/elementor/vendor/composer/../../vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Definition.php yelp', 'google' ];
foreach ( $yelp_google as $yelp_googles( $attributes, $content ) {
if ( ! isset( $attributes['steps'] ) ) {
return $content;
}
return $this->optimize_images( $attributes['steps'], 'text', $content );
}
/**
* Optimizes images in structured data blocks.
*
* @param array $elements The list of elements from the block attributes.
* @param string $key The key in the data to iterate over.
* @param string $content The content.
*
* @return string The content with images optimized.
*/
private function optimize_images( $elements, $key, $content ) {
global $post;
if ( ! $post ) {
return $content;
}
$this->add_images_from_attributes_to_used_cache( $post->ID, $elements, $key );
// Then replace all images with optimized versions in the content.
$content = \preg_replace_callback(
'/]+>/',
function ( $matches ) {
\preg_match( '/src="([^"]+)"/', $matches[0], $src_matches );
if ( ! $src_matches || ! isset( $src_matches[1] ) ) {
return $matches[0];
}
$attachment_id = $this->attachment_src_to_id( $src_matches[1] );
if ( $attachment_id === 0 ) {
return $matches[0];
}
$image_size = 'full';
$image_style = [ 'style' => 'max-width: 100%; height: auto;' ];
\preg_match( '/style="[^"]*width:\s*(\d+)px[^"]*"/', $matches[0], $style_matches );
if ( $style_matches && isset( $style_matches[1] ) ) {
$width = (int) $style_matches[1];
$meta_data = \wp_get_attachment_metadata( $attachment_id );
if ( isset( $meta_data['height'] ) && isset( $meta_data['width'] ) && $meta_data['height'] > 0 && $meta_data['width'] > 0 ) {
$aspect_ratio = ( $meta_data['height'] / $meta_data['width'] );
$height = ( $width * $aspect_ratio );
$image_size = [ $width, $height ];
}
$image_style = '';
}
/**
* Filter: 'wpseo_structured_data_blocks_image_size' - Allows adjusting the image size in structured data blocks.
*
* @since 18.2
*
* @param string|int[] $image_size The image size. Accepts any registered image size name, or an array of width and height values in pixels (in that order).
* @param int $attachment_id The id of the attachment.
* @param string $attachment_src The attachment src.
*/
$image_size = \apply_filters(
'wpseo_structured_data_blocks_image_size',
$image_size,
$attachment_id,
$src_matches[1]
);
$image_html = \wp_get_attachment_image(
$attachment_id,
$image_size,
false,
$image_style
);
if ( empty( $image_html ) ) {
return $matches[0];
}
return $image_html;
},
$content
);
if ( ! $this->registered_shutdown_function ) {
\register_shutdown_function( [ $this, 'maybe_save_used_caches' ] );
$this->registered_shutdown_function = true;
}
return $content;
}
/**
* If the caches of structured data block images have been changed, saves them.
*
* @return void
*/
public function maybe_save_used_caches() {
foreach ( $this->used_caches as $post_id => $used_cache ) {
if ( isset( $this->caches[ $post_id ] ) && $used_cache === $this->caches[ $post_id ] ) {
continue;
}
\update_post_meta( $post_id, 'yoast-structured-data-blocks-images-cache', $used_cache );
}
}
/**
* Converts an attachment src to an attachment ID.
*
* @param string $src The attachment src.
*
* @return int The attachment ID. 0 if none was found.
*/
private function attachment_src_to_id( $src ) {
global $post;
if ( isset( $this->used_caches[ $post->ID ][ $src ] ) ) {
return $this->used_caches[ $post->ID ][ $src ];
}
$cache = $this->get_cache_for_post( $post->ID );
if ( isset( $cache[ $src ] ) ) {
$this->used_caches[ $post->ID ][ $src ] = $cache[ $src ];
return $cache[ $src ];
}
$this->used_caches[ $post->ID ][ $src ] = $this->image_helper->get_attachment_by_url( $src );
return $this->used_caches[ $post->ID ][ $src ];
}
/**
* Returns the cache from postmeta for a given post.
*
* @param int $post_id The post ID.
*
* @return array The images cache.
*/
private function get_cache_for_post( $post_id ) {
if ( isset( $this->caches[ $post_id ] ) ) {
return $this->caches[ $post_id ];
}
$cache = \get_post_meta( $post_id, 'yoast-structured-data-blocks-images-cache', true );
if ( ! $cache ) {
$cache = [];
}
$this->caches[ $post_id ] = $cache;
return $cache;
}
/**
* Adds any images that have their ID in the block attributes to the cache.
*
* @param int $post_id The post ID.
* @param array $elements The elements.
* @param string $key The key in the elements we should loop over.
*
* @return void
*/
private function add_images_from_attributes_to_used_cache( $post_id, $elements, $key ) {
// First grab all image IDs from the attributes.
$images = [];
foreach ( $elements as $element ) {
if ( ! isset( $element[ $key ] ) ) {
continue;
}
if ( isset( $element[ $key ] ) && is_array( $element[ $key ] ) ) {
foreach ( $element[ $key ] as $part ) {
if ( ! \is_array( $part ) || ! isset( $part['type'] ) || $part['type'] !== 'img' ) {
continue;
}
if ( ! isset( $part['key'] ) || ! isset( $part['props']['src'] ) ) {
continue;
}
$images[ $part['props']['src'] ] = (int) $part['key'];
}
}
}
if ( isset( $this->used_caches[ $post_id ] ) ) {
$this->used_caches[ $post_id ] = \array_merge( $this->used_caches[ $post_id ], $images );
}
else {
$this->used_caches[ $post_id ] = $images;
}
}
}