Home
last modified time | relevance | path

Searched refs:cacheFN (Results 1 – 3 of 3) sorted by relevance

/plugin/gdpr/action/
H A Ddelusers.php45 $cacheFN = $this->getCacheFN('users');
46 file_put_contents($cacheFN, $username . "\n", FILE_APPEND);
116 $cacheFN = $this->getCacheFN('counter');
117 $count = (int)file_get_contents($cacheFN);
118 file_put_contents($cacheFN, $count + 1);
139 $cacheFN = $this->getCacheFN('counter');
140 if (!file_exists($cacheFN)) {
141 file_put_contents($cacheFN, '0');
144 return file_get_contents($cacheFN);
H A Doldips.php167 $cacheFN = getCacheName('_' . $changelogFN, '.plugin_gdpr');
168 if ($create && !file_exists($cacheFN)) {
169 touch($cacheFN);
171 return $cacheFN;
/plugin/cleanoldips/
H A Daction.php168 $cacheFN = getCacheName('_' . $pageid . 'cleanoldips');
169 if ($create && !file_exists($cacheFN)) {
170 touch($cacheFN);
172 return $cacheFN;