コード例 #1
0
ファイル: plugins.php プロジェクト: EliasGoldberg/troop-sim
/**
 * Call the cache server to purge the cache with Varnish HTTP Purge.
 *
 * @since 2.5.5
 *
 * @return void
 */
function rocket_clean_varnish_http_purge()
{
    if (class_exists('VarnishPurger')) {
        $purger = new VarnishPurger();
        $purger->executePurge();
    }
}