Home
last modified time | relevance | path

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

/plugin/logindelay/helper/
H A Dlog.php11 protected $statFile; variable in helper_plugin_logindelay_log
20 $this->statFile = $conf['cachedir'] . '/logindelay_' . $user . '.log';
28 @unlink($this->statFile);
38 file_put_contents($this->statFile, $strikes);
50 return (int) file_get_contents($this->statFile);
61 if (!is_file($this->statFile)) return 0;
67 $remainingDelay = $delay - (time() - filemtime($this->statFile)) / 60;