Lines Matching refs:out
57 $out = '<form method="post" action="">';
58 $out .= '<table class="eshop_plugin">';
59 …$out .= sprintf('<tr><th>Price in USD:</th><td class="price" id="eshop_price_usd" data-unitprice="…
60 …$out .= sprintf('<tr><th>Price in EUR:</th><td class="price" id="eshop_price_eur" data-unitprice="…
61 …$out .= sprintf('<tr><th>Price in BTC:</th><td class="price" id="eshop_price_btc" data-unitprice="…
62 $out .= '<tr><th>Quantity:</th><td class="count"><select name="count" id="eshop_count">';
64 $out .= sprintf('<option value="%d">%d</option>', $i, $i);
66 $out .= '</select></td></tr>';
67 …$out .= '<tr><td colspan="2" class="button"><input class="submit" type="submit" value="Buy"/></td>…
68 $out .= '</table>';
69 … $out .= sprintf('<input type="hidden" name="id" value="%s" />', end(explode(':', $INFO['id'])));
70 $out .= sprintf('<input type="hidden" name="name" value="%s" />', $INFO['meta']['title']);
71 $out .= sprintf('<input type="hidden" name="btcunit" value="%f" />', $data['btc']);
72 …$out .= sprintf('<input type="hidden" name="btctotal" id="eshop_total" value="%f" />', $data['btc'…
73 $out .= '</form>';
75 $renderer->doc .= $out;