コード例 #1
0
 /**
  * Remove the current username from the central AntiSpoof system
  * if that feature is enabled
  */
 public function removeAntiSpoof()
 {
     if (class_exists('CentralAuthSpoofUser')) {
         $spoof = new CentralAuthSpoofUser($this->mName);
         $spoof->remove();
     }
 }