Lines Matching refs:blocked
25 protected $blocked; variable in action_plugin_tokenbucketauth
34 $this->blocked = null;
65 $this->blocked = array();
67 $this->blocked = @unserialize($content);
70 if($this->blocked === false)
71 $this->blocked = array();
103 if(array_key_exists($ip, $this->blocked))
105 if($this->blocked[$ip] + $this->getConf('tba_block_time') > $time)
108 $this->_do_disable_login($ip, $this->blocked[$ip]);
115 unset($this->blocked[$ip]);
150 $this->blocked[$ip] = $time + $this->getConf('tba_mean_time');
156 io_saveFile($banned_f, serialize($this->blocked));
161 if(array_key_exists($ip, $this->blocked))
162 $this->_do_disable_login($ip, $this->blocked[$ip], true);