htmly/system/admin/views/clear-cache.html.php
Danang Probo Sayekti 881aa37dcf Fix content migration
2015-08-27 11:30:03 +07:00

20 lines
No EOL
362 B
PHP

<?php
$files = array();
$draft = array();
$files = glob('content/*/blog/*.md', GLOB_NOSORT);
$draft = glob('content/*/draft/*.md', GLOB_NOSORT);
if (!empty($files) || !empty($draft)) {
migrate_old_content();
}
rebuilt_cache('all');
foreach (glob('cache/page/*.cache', GLOB_NOSORT) as $file) {
unlink($file);
}
echo 'All cache has been deleted!';
?>