first commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
$smarty->assign('number', $number);
|
||||
$smarty->assign('email', $email);
|
||||
$smarty->assign('amount', $amount);
|
||||
$smarty->assign('currency', $currency);
|
||||
$smarty->assign('payment', $payment);
|
||||
|
||||
$smarty->display("order.html");
|
||||
?>
|
||||
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
st_theme_use_stylesheet('stTrustedShopsPlugin.css');
|
||||
$smarty->assign('certificate', $certificate);
|
||||
$smarty->assign('form', form_tag('https://www.trustedshops.com/shop/protection.php', array('id' => 'trustedShopsForm', 'target' => '_blank')));
|
||||
$smarty->assign('charset', input_hidden_tag('charset', 'UTF-8'));
|
||||
$smarty->assign('shopId', input_hidden_tag('shop_id', $certificate));
|
||||
$smarty->assign('email', input_hidden_tag('email', $email));
|
||||
$smarty->assign('amount', input_hidden_tag('amount', $orderAmount));
|
||||
$smarty->assign('curr', input_hidden_tag('curr', $currency));
|
||||
$smarty->assign('paymentType', input_hidden_tag('paymentType', $paymentType));
|
||||
$smarty->assign('kdnr', input_hidden_tag('kdnr', $userId));
|
||||
$smarty->assign('ordernr', input_hidden_tag('ordernr', $orderId));
|
||||
$smarty->display("trusted_shops_buyer_protection_classic.html");
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
st_theme_use_stylesheet('stTrustedShopsPlugin.css');
|
||||
$smarty->assign('certificate', $certificate);
|
||||
$smarty->assign('amount', $amount);
|
||||
$smarty->assign('price', $price);
|
||||
$smarty->assign('currency', $currency);
|
||||
$smarty->assign('checkbox', checkbox_tag('trusted_shops', '1', $checked, array('id' => 'trustedShopsCheckbox' ,'onClick' => "jQuery(function($){stDelivery.executeAjaxUpdate($(stDelivery.deliveryPaymentChecked),'".url_for('stTrustedShopsFrontend/ajaxBasketUpdate')."', {ts_checked:$('#trustedShopsCheckbox').attr('checked')})})")));
|
||||
$smarty->display("trusted_shops_buyer_protection_excellence.html");
|
||||
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
st_theme_use_stylesheet('stTrustedShopsPlugin.css');
|
||||
$smarty->assign('certificate', $certificate);
|
||||
$smarty->display('trusted_shops_show_rating_widget.html');
|
||||
@@ -0,0 +1 @@
|
||||
<?php echo $code;
|
||||
@@ -0,0 +1,21 @@
|
||||
<div class="st_application" id="trusted_shops_classic_summary">
|
||||
<div id="trusted_shop_classic_summary_logo">
|
||||
<a href="https://www.trustedshops.com/shop/certificate.php?shop_id={$certificate}" target="_blank" />
|
||||
<img id="st_home" src="/images/frontend/theme/default/stTrustedShopsPlugin/logo.png" alt="" title="{__ text="Znak Jakości Trusted Shops – tu możesz sprawdzić ważność!"}"/>
|
||||
</a>
|
||||
</div>
|
||||
<div id="trusted_shop_classic_summary_content">
|
||||
{__ text="Jako dodatkowy serwis oferujemy Ochronę Kupującego Trusted Shops. Przejmujemy pełny koszt tej gwarancji, wystarczy się tylko zarejestrować, aby z niej skorzystać."}
|
||||
{$form}
|
||||
{$charset}
|
||||
{$shopId}
|
||||
{$email}
|
||||
{$amount}
|
||||
{$curr}
|
||||
{$paymentType}
|
||||
{$kdnr}
|
||||
{$ordernr}
|
||||
<a href="#" onClick="document.getElementById('trustedShopsForm').submit();">{__ text="Zgłoszenie do Ochrony Kupującego Trusted Shops"}</a>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,20 @@
|
||||
<div id="trusted_shops">
|
||||
<h5 class="st_title">{__ text="Ochrona Kupującego Trusted Shops"}</h5>
|
||||
<div id="trusted_shops_logo">
|
||||
<a href="https://www.trustedshops.com/shop/certificate.php?shop_id={$certificate}" target="_blank">
|
||||
<img id="st_home" src="/images/frontend/theme/default/stTrustedShopsPlugin/logo.png" alt=""/>
|
||||
</a>
|
||||
</div>
|
||||
<div id="trusted_shops_content">
|
||||
<div id="trusted_shops_checkbox">
|
||||
{$checkbox}{__ text="Ochrona Kupującego do"} {$amount} {$currency} ({$price} {$currency} {__ text="z VAT"})
|
||||
</div>
|
||||
{__ text="Ochrona Kupującego Trusted Shops zabezpiecza Twoje zakupy internetowe. Wyrażam zgodę na przekazywanie i"}
|
||||
<a href="https://www.trustedshops.com/shop/data_privacy.php?shop_id={$certificate}" target="_blank">{__ text="zapisywanie"}</a>
|
||||
{__ text="mojego adresu e-mail przez Trusted Shops w celu realizacji usługi Ochrony Kupującego."}
|
||||
<a href="https://www.trustedshops.com/shop/protection_conditions.php?shop_id={$certificate}" target="_blank">{__ text="Warunki gwarancji"}</a>
|
||||
{__ text="dla Ochrony Kupującego."}
|
||||
</div>
|
||||
<div id="test"></div>
|
||||
<div class="st_clear_all"></div>
|
||||
</div>
|
||||
@@ -0,0 +1,3 @@
|
||||
<div style="font-size:12px; padding-top: 15px;">
|
||||
<a target="_blank" href="https://www.trustedshops.com/evaluation/evaluer_{$certificate}.html{$params}">{__ text="Kliknij tu"}</a> {__ text="aby dodać ocenę sklepu."}
|
||||
</div>
|
||||
@@ -0,0 +1 @@
|
||||
{__ text="Wejdź na stronę"} https://www.trustedshops.com/evaluation/evaluer_{$certificate}.html {__ text="aby dodać ocenę sklepu."}
|
||||
@@ -0,0 +1,3 @@
|
||||
<a target="_blank" href="https://www.trustedshops.com/buyerrating/info_{$certificate}.html" title="{__ text="Zobacz opinie klientów sklepu"} {$shopName}">
|
||||
<img alt="{__ text="Opinie klientów sklepu"} {$shopName}" border="0" style="width: 180px; padding-top: 10px;" src="https://www.trustedshops.com/bewertung/widget/widgets/{$certificate}.gif"/>
|
||||
</a>
|
||||
@@ -0,0 +1,15 @@
|
||||
<div id="trusted_shops_sealbox">
|
||||
<div class="trusted_shops_sealbox_top_small"></div>
|
||||
<div class="trusted_shops_sealbox_middle">
|
||||
{$form}
|
||||
{$shopId}
|
||||
<img src="/images/frontend/theme/default/stTrustedShopsPlugin/logo.png" alt="" title="{__ text="Znak Jakości Trusted Shops – tu możesz sprawdzić ważność!"}" onClick="document.getElementById('trustedShopsSealboxForm').submit();"/>
|
||||
</form>
|
||||
<div class="trusted_shops_sealbox_txt">
|
||||
<a href="http://www.trustedshops.com/profile/{$urlShopName}_{$certificate}.html" title="{__ text="Więcej informacji o"} {$shopName}" target="_blank">
|
||||
{$shopName} {__ text="to sklep internetowy z Certyfikatem i Ochroną Kupującego, certyfikowany przez Trusted Shops. Zobacz więcej..."}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="trusted_shops_sealbox_bottom"></div>
|
||||
</div>
|
||||
@@ -0,0 +1,20 @@
|
||||
<div id="basket-trusted-shops" class="roundies box_form">
|
||||
<h3>{__ text="Ochrona Kupującego Trusted Shops"}</h3>
|
||||
<div class="st_clear_all"></div>
|
||||
<div id="trusted-shops-excellence-logo">
|
||||
<a href="https://www.trustedshops.com/shop/certificate.php?shop_id={$certificate}" target="_blank">
|
||||
<img id="st_home" src="/images/frontend/theme/default2/stTrustedShopsPlugin/logo.png" alt=""/>
|
||||
</a>
|
||||
</div>
|
||||
<div id="trusted-shops-excellence-content">
|
||||
<div id="trusted-shops-excellence-checkbox">
|
||||
{$checkbox}{__ text="Ochrona Kupującego do"} {$amount} {$currency} ({$price} {$currency} {__ text="z VAT"})
|
||||
</div>
|
||||
{__ text="Ochrona Kupującego Trusted Shops zabezpiecza Twoje zakupy internetowe. Wyrażam zgodę na przekazywanie i"}
|
||||
<a href="https://www.trustedshops.com/shop/data_privacy.php?shop_id={$certificate}" target="_blank">{__ text="zapisywanie"}</a>
|
||||
{__ text="mojego adresu e-mail przez Trusted Shops w celu realizacji usługi Ochrony Kupującego."}
|
||||
<a href="https://www.trustedshops.com/shop/protection_conditions.php?shop_id={$certificate}" target="_blank">{__ text="Warunki gwarancji"}</a>
|
||||
{__ text="dla Ochrony Kupującego."}
|
||||
</div>
|
||||
<div class="st_clear_all"></div>
|
||||
</div>
|
||||
@@ -0,0 +1,4 @@
|
||||
<div style="font-size:12px; padding-top: 15px;">
|
||||
{__ text="Czy jesteś zadowolony z naszych usług?"}
|
||||
<a target="_blank" href="{__ text="https://www.trustedshops.pl/opinia/ocen_"}{$certificate}.html{$params}">{__ text="Napisz komentarz i wystaw nam ocenę."}</a>
|
||||
</div>
|
||||
@@ -0,0 +1 @@
|
||||
{__ text="Czy jesteś zadowolony z naszych usług?"} {__ text="Napisz komentarz i wystaw nam ocenę."} - {__ text="https://www.trustedshops.pl/opinia/ocen_"}{$certificate}.html
|
||||
@@ -0,0 +1,3 @@
|
||||
<a href="{__ text="https://www.trustedshops.pl/opinia/info_"}{$certificate}.html" title="{__ text="Przeczytaj opinie klientów"}" target="_blank">
|
||||
<img alt="{__ text="Przeczytaj opinie klientów"}" border="0" style="width: 183px;" src="//widgets.trustedshops.com/reviews/widgets/{$certificate}.gif"/>
|
||||
</a>
|
||||
@@ -0,0 +1,8 @@
|
||||
<div id="trustedShopsCheckout" style="display: none;">
|
||||
<span id="tsCheckoutOrderNr">{$number}</span>
|
||||
<span id="tsCheckoutBuyerEmail">{$email}</span>
|
||||
<span id="tsCheckoutOrderAmount">{$amount}</span>
|
||||
<span id="tsCheckoutOrderCurrency">{$currency}</span>
|
||||
<span id="tsCheckoutOrderPaymentType">{$payment}</span>
|
||||
{slot name="trusted-shops-order" hidden="true"}{/slot}
|
||||
</div>
|
||||
@@ -0,0 +1,31 @@
|
||||
<div class="panel panel-default" id="basket-login-user">
|
||||
<div class="panel-heading">{__ text="Ochrona Kupującego Trusted Shops"}</div>
|
||||
|
||||
<div class="panel-body">
|
||||
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
{$checkbox} {if $big_amount == 1}{__ text="Ochrona Kupującego powyżej"}{else}{__ text="Ochrona Kupującego do"}{/if} {$amount} {$currency} ({$price} {$currency} {__ text="z VAT"})
|
||||
</label>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="trusted-shops-excellence-logo" class="pull-left" style="margin:10px;">
|
||||
<a href="https://www.trustedshops.com/shop/certificate.php?shop_id={$certificate}" target="_blank">
|
||||
<img id="st_home" src="/images/frontend/theme/default2/stTrustedShopsPlugin/logo.png" alt=""/>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div id="trusted-shops-excellence-content" style="margin:10px;">
|
||||
{__ text="Ochrona Kupującego Trusted Shops zabezpiecza Twoje zakupy internetowe. Wyrażam zgodę na przekazywanie i"}
|
||||
<a href="https://www.trustedshops.com/shop/data_privacy.php?shop_id={$certificate}" target="_blank">{__ text="zapisywanie"}</a>
|
||||
{__ text="mojego adresu e-mail przez Trusted Shops w celu realizacji usługi Ochrony Kupującego."}
|
||||
<a href="https://www.trustedshops.com/shop/protection_conditions.php?shop_id={$certificate}" target="_blank">{__ text="Warunki gwarancji"}</a>
|
||||
{__ text="dla Ochrony Kupującego."}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -0,0 +1,7 @@
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body text-center">
|
||||
<a href="{__ text="https://www.trustedshops.pl/opinia/info_"}{$certificate}.html" title="{__ text="Przeczytaj opinie klientów"}" target="_blank">
|
||||
<img alt="{__ text="Przeczytaj opinie klientów"}" border="0" src="//widgets.trustedshops.com/reviews/widgets/{$certificate}.gif"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user