Yes, i read it.
In the paypal plugin i see this part of code in the function onAfterOrderConfirm():
$notify_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=notify¬if_payment='.$this->name.'&tmpl=component&lang='.$this->locale . $this->url_itemid;
$return_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=checkout&task=after_end&order_id='.$order->order_id . $this->url_itemid;
$cancel_url = HIKASHOP_LIVE.'index.php?option=com_hikashop&ctrl=order&task=cancel_order&order_id='.$order->order_id . $this->url_itemid;
Then in the variable $vars:
'return' => $return_url,
'notify_url' => $notify_url,
'cancel_return' => $cancel_url,
Trough form myplugin_end.php i tell the gateway provider follow data:
Ordernumber, language, currency, name, clientmail, amount
but i don't have any of this params in the documentation of my gateway page. I have to tell the gateway provider following url's:
1. If the order is successful, for example with content "Thanke you for your order..."
2. If the order is canceled "Error page..."
Are 2 urls this urls?