Files
gallery3/modules/digibug/views/digibug_form.html.php
Tim Almdal 231ad4f329 This implements the Digibug printing. When a a print request is made the digibug shopping cart is opened in a new
window.  When the cart is emptied, the window is closed. Users can close the window by pressing the continue shopping
button
2009-06-23 22:13:28 -07:00

16 lines
420 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
<head>
<?= html::script("lib/jquery.js") ?>
<script type="text/javascript">
$("body form").ready(function() {
$("body form").submit();
});
</script>
</head>
<body>
<?= form::open("http://www.digibug.com/dapi/order.php") ?>
<?= form::hidden($order_parms) ?>
<?= form::close() ?>
</body>
</html>