Skip to content

Instantly share code, notes, and snippets.

@MKorostoff
Created January 20, 2015 22:34
Show Gist options
  • Save MKorostoff/d31c8352d43894b0645c to your computer and use it in GitHub Desktop.
Save MKorostoff/d31c8352d43894b0645c to your computer and use it in GitHub Desktop.
<?php
function cache_invalidation_node_presave($node) {
if(!empty($node->promote)) {//target front page content
//Clear drupal cache
cache_clear_all('http://cachedemo.local/', 'cache_page');
//Clear varnish cache
httprl_request( 'http://cachedemo.local/', array('blocking' => FALSE, 'method' => 'PURGE'));
httprl_send_request();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment