You are here

function colorizer_clearcache in Colorizer 7

Removes css files from colorizer files cache They will get recreated in hook_init on demand

2 calls to colorizer_clearcache()
colorizer_admin_form_submit in ./colorizer.admin.inc
Helper function to submit/save a colorizer form Mostly copied from Color module
colorizer_flush_caches in ./colorizer.module
Implements hook_flush_caches().

File

./colorizer.module, line 293
Colorize your theme

Code

function colorizer_clearcache() {
  file_unmanaged_delete_recursive('public://colorizer');
}