PluginProbe
PhastPress / 3.11
PhastPress v3.11
3.12 3.11 1.75 1.76 1.77 1.78 1.79 1.80 1.81 1.82 1.83 1.84 1.85 1.86 1.87 1.88 1.89 1.90 1.91 1.92 1.93 1.94 1.95 1.96 1.97 All 119 releases
phastpress / classes / CacheRootCandidatesProviderImplementation.php

CacheRootCandidatesProviderImplementation.php in PhastPress 3.11, at classes/CacheRootCandidatesProviderImplementation.php

19 lines 432 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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