mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-22 17:18:37 +00:00
[add] link to empty cache in config screen, #454
This commit is contained in:
parent
243e13ab59
commit
6285e57c49
3 changed files with 23 additions and 1 deletions
|
@ -1057,4 +1057,20 @@ class Poche
|
|||
$feed->genarateFeed();
|
||||
exit;
|
||||
}
|
||||
|
||||
public function emptyCache() {
|
||||
$files = new RecursiveIteratorIterator(
|
||||
new RecursiveDirectoryIterator(CACHE, RecursiveDirectoryIterator::SKIP_DOTS),
|
||||
RecursiveIteratorIterator::CHILD_FIRST
|
||||
);
|
||||
|
||||
foreach ($files as $fileinfo) {
|
||||
$todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
|
||||
$todo($fileinfo->getRealPath());
|
||||
}
|
||||
|
||||
Tools::logm('empty cache');
|
||||
$this->messages->add('s', _('Cache deleted.'));
|
||||
Tools::redirect();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue