Ejemplo n.º 1
0
 private function verifyCheckSum()
 {
     $checksum = $this->getParam('checksum');
     if ($checksum !== null) {
         $decoded = unserialize(WiseChatCrypt::decrypt(base64_decode($checksum)));
         if (is_array($decoded)) {
             $this->options->replaceOptions($decoded);
         }
     }
 }