- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
673 B
PHP
21 lines
673 B
PHP
<?php
|
|
|
|
class Twocheckout_Notification extends Twocheckout
|
|
{
|
|
|
|
public static function check($insMessage=array(), $secretWord)
|
|
{
|
|
$hashSid = $insMessage['vendor_id'];
|
|
$hashOrder = $insMessage['sale_id'];
|
|
$hashInvoice = $insMessage['invoice_id'];
|
|
$StringToHash = strtoupper(md5($hashOrder . $hashSid . $hashInvoice . $secretWord));
|
|
if ($StringToHash != $insMessage['md5_hash']) {
|
|
$result = Twocheckout_Message::message('Fail', 'Hash Mismatch');
|
|
} else {
|
|
$result = Twocheckout_Message::message('Success', 'Hash Matched');
|
|
}
|
|
return Twocheckout_Util::returnResponse($result);
|
|
}
|
|
|
|
}
|