| 1 |
<?php |
| 2 |
|
| 3 |
namespace Kibo\PhastPlugins\PhastPress; |
| 4 |
|
| 5 |
|
| 6 |
use Kibo\PhastPlugins\SDK\Caching\CacheRootCandidatesProvider; |
| 7 |
|
| 8 |
class CacheRootCandidatesProviderImplementation implements CacheRootCandidatesProvider { |
| 9 |
|
| 10 |
public function getCacheRootCandidates() { |
| 11 |
return [ |
| 12 |
WP_CONTENT_DIR . '/cache', |
| 13 |
WP_CONTENT_DIR . '/uploads', |
| 14 |
__DIR__ . '/../cache', |
| 15 |
sys_get_temp_dir() |
| 16 |
]; |
| 17 |
} |
| 18 |
} |
| 19 |
|