Update stripe.php
This commit is contained in:
parent
8007b222d0
commit
77f92a5da3
@ -215,7 +215,7 @@ if ( empty(GETPOST('status', 'alpha')) ) {
|
|||||||
} else {
|
} else {
|
||||||
$endpoint->disabled = false;
|
$endpoint->disabled = false;
|
||||||
}}
|
}}
|
||||||
$endpoint->url = dol_buildpath('/public/stripe/ipn.php?test', 2);
|
$endpoint->url = dol_buildpath('/public/stripe/ipn.php?test', 3);
|
||||||
$endpoint->save();
|
$endpoint->save();
|
||||||
if ($endpoint->status == 'enabled')
|
if ($endpoint->status == 'enabled')
|
||||||
{
|
{
|
||||||
@ -267,30 +267,30 @@ if (empty($conf->stripeconnect->enabled))
|
|||||||
$out.= ajax_autoselect("onlinelivewebhookurl", 0);
|
$out.= ajax_autoselect("onlinelivewebhookurl", 0);
|
||||||
print '<br />'.$out;
|
print '<br />'.$out;
|
||||||
print '</td><td>';
|
print '</td><td>';
|
||||||
if ( !empty($conf->global->STRIPE_LIVE_WEBHOOK_KEY) && !empty($conf->global->STRIPE_LIVE_SECRET_KEY) && !empty($conf->global->STRIPE_LIVE_WEBHOOK_ID) ) {
|
if ( !empty($conf->global->STRIPE_LIVE_WEBHOOK_KEY) && !empty($conf->global->STRIPE_LIVE_SECRET_KEY) && !empty($conf->global->STRIPE_LIVE_WEBHOOK_ID) ) {
|
||||||
\Stripe\Stripe::setApiKey($conf->global->STRIPE_LIVE_SECRET_KEY);
|
\Stripe\Stripe::setApiKey($conf->global->STRIPE_LIVE_SECRET_KEY);
|
||||||
$endpoint = \Stripe\WebhookEndpoint::retrieve($conf->global->STRIPE_LIVE_WEBHOOK_ID);
|
$endpoint = \Stripe\WebhookEndpoint::retrieve($conf->global->STRIPE_LIVE_WEBHOOK_ID);
|
||||||
$endpoint->enabled_events = $stripearrayofwebhookevents;
|
$endpoint->enabled_events = $stripearrayofwebhookevents;
|
||||||
if ( GETPOST('webhook', 'alpha') == $conf->global->STRIPE_LIVE_WEBHOOK_ID ) {
|
if ( GETPOST('webhook', 'alpha') == $conf->global->STRIPE_LIVE_WEBHOOK_ID ) {
|
||||||
if ( empty(GETPOST('status', 'alpha')) ) {
|
if ( empty(GETPOST('status', 'alpha')) ) {
|
||||||
$endpoint->disabled = true;
|
$endpoint->disabled = true;
|
||||||
} else {
|
} else {
|
||||||
$endpoint->disabled = false;
|
$endpoint->disabled = false;
|
||||||
}}
|
}}
|
||||||
$endpoint->url = dol_buildpath('/public/stripe/ipn.php', 2);
|
$endpoint->url = dol_buildpath('/public/stripe/ipn.php', 3);
|
||||||
$endpoint->save();
|
$endpoint->save();
|
||||||
if ($endpoint->status == 'enabled')
|
if ($endpoint->status == 'enabled')
|
||||||
{
|
{
|
||||||
print '<a href="'.$_SERVER['PHP_SELF'].'?action=ipn&webhook='.$endpoint->id.'&status=0">';
|
print '<a href="'.$_SERVER['PHP_SELF'].'?action=ipn&webhook='.$endpoint->id.'&status=0">';
|
||||||
print img_picto($langs->trans("Activated"), 'switch_on');
|
print img_picto($langs->trans("Activated"), 'switch_on');
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print '<a href="'.$_SERVER['PHP_SELF'].'?action=ipn&webhook='.$endpoint->id.'&status=1">';
|
print '<a href="'.$_SERVER['PHP_SELF'].'?action=ipn&webhook='.$endpoint->id.'&status=1">';
|
||||||
print img_picto($langs->trans("Disabled"), 'switch_off');
|
print img_picto($langs->trans("Disabled"), 'switch_off');
|
||||||
}
|
}
|
||||||
//print $endpoint;
|
//print $endpoint;
|
||||||
} else print img_picto($langs->trans("inactive"), 'statut5');
|
} else print img_picto($langs->trans("inactive"), 'statut5');
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user