Revision 563 (by ahitrov, 2016/04/12 12:53:34) Payment plugin contenido interface. Order finder and order actions

<& "/contenido/components/header.msn" &>
<& "/contenido/components/naviline.msn" &>

<script type="text/javascript">
<!--
var nOrderId = <% $order_id || 0 %>;

//-->
</script>

<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr valign="top">
<td width="35%">
<& /contenido/payments/components/form_order_finder.msn, order_id => $order_id &>
</td>
<td width="2%" nowrap>&nbsp;</td>
<td width="63%">
<div id="order-actions">
% if ( $order_id ) {
<& /contenido/payments/components/order_actions.msn, order_id => $order_id &>
% }
</div>
</td>
</tr>
</table>

</body>
</html>
<%args>

	$order_id	=> undef

</%args>
<%init>

    $order_id = undef	unless $order_id && $order_id =~ /^\d+$/;

</%init>