Esempio n. 1
0
 /**
  * Checks if the user's IP is contained in a list of IPs or IP expressions
  *
  * @param   array  $ipTable  The list of IP expressions
  *
  * @return  null|bool  True if it's in the list, null if the filtering can't proceed
  */
 public static function IPinList($ipTable = array())
 {
     // Get our IP address
     $ip = static::getIp();
     return AdmintoolsHelperIp::IPinList($ip, $ipTable);
 }