| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/siteorigin-panels/inc/ |
Upload File : |
<?php
class SiteOrigin_Panels_Cache_Renderer {
function __construct() {
// Clear cache when the Page Builder version changes
add_action( 'siteorigin_panels_version_changed', array( $this, 'clear_cache' ), 10, 0 );
// When we activate/deactivate a plugin or switch themes that might change rendering
add_action( 'activated_plugin', array( $this, 'clear_cache' ), 10, 0 );
add_action( 'deactivated_plugin', array( $this, 'clear_cache' ), 10, 0 );
add_action( 'switch_theme', array( $this, 'clear_cache' ), 10, 0 );
// When settings are saved, this is also a good way to force a cache refresh
add_action( 'siteorigin_panels_save_settings', array( $this, 'clear_cache' ), 10, 0 );
// When a single post is saved
add_action( 'save_post', array( $this, 'clear_cache' ), 10, 2 );
}
/**
* @return SiteOrigin_Panels_Cache_Renderer
*/
static function single() {
static $single;
return empty( $single ) ? $single = new self() : $single;
}
/**
* Clear post meta cache.
*
* Keep this around for a bit in attempt to delete any existing caches.
*/
public function clear_cache(){
delete_post_meta_by_key( 'siteorigin_panels_cache' );
}
}