This commit is contained in:
2026-05-15 18:33:51 +02:00
parent 3601be572f
commit c980004309
8442 changed files with 783630 additions and 1 deletions

View File

@@ -0,0 +1,46 @@
<h1 class="siteTitle">{$objElement->GetName()}</h1>
{assign var=x value=1}
<table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
<th>&nbsp;</th>
<th>nazwa</th>
<th>&nbsp;</th>
</tr>
{foreach from=$arrayObj item=obj name=product}
{*{if $obj->GetPicture()}
<a href="{url label=$objSubsite->GetUrlLabel() }"><img src="{$objSubsite->GetPictureMiniUrl()}" alt="" /></a>
{/if}
<h2><a style="color:#3d4c6d;" href="{url label=$objSubsite->GetUrlLabel()}">{$objSubsite->GetName()}</a></h2>
{if count($objSubsite->content->GetDescription()) <= 0 }
<p>{$objSubsite->content->GetDescription()|strip_tags|truncate:50} <a href="{url label=$objSubsite->GetUrlLabel()}">{translate word='read_more'}</a></p>
{/if}
*}
<tr {if $x==1}{assign var=x value=0}{else}{assign var=x value=1}class="even"{/if}>
{if $obj->GetPicture()}
<td><img src="{$obj->GetPictureMiniUrl()}" alt="" /></td>
{else}
<td><img src="{$urlStatic}/image/Strona/zalepka_180.gif" alt="" /></td>
{/if}
<td>{$obj->GetName()}</td>
<td style="text-align: center;">
<a href="{url label=$urlProductDetailLabel id=$obj->GetId() title=$obj->GetName()|escape }">{translate word='read_more'}</a>
</td>
</tr>
{foreachelse}
{*if !isset($searchString) || $searchString == ""}
<tr>
<td colspan="5" style="text-align: center;">Brak zdefiniowanych produktów.</td>
</tr>
{/if*}
{/foreach}
</table>

View File

@@ -0,0 +1,53 @@
<h1 class="siteTitle">{$objElement->GetName()}</h1>
{assign var=x value=1}
<table width="100%" class="commonTable" cellpadding="0" cellspacing="0">
<tr>
<th>&nbsp;</th>
<th>&nbsp;</th>
</tr>
<tr>
<td>Id</td>
<td>{$objProduct->GetId()}</td>
</tr>
{foreach from=$arrayObjAttribute item=objAttribute}
{if $objAttribute->GetValue()}
<tr>
<td>{$objAttribute->GetDescription()}</td>
<td>{$objAttribute->GetValue()}</td>
</tr>
{/if}
{/foreach}
<tr>
<td>{translate word='opis'}</td>
<td>{$objProduct->GetDescription()}</td>
</tr>
<tr>
<td colspan="2">
{if $objProduct->GetPicture()}
<a href="{$objProduct->GetPictureUrl()}" class="gallery" style="float: left; margin-right: 15px; margin-bottom: 15px;"><img src="{$objProduct->GetPictureMiniUrl()}" alt="{$objProduct->GetName()|escape}" title="{$objProduct->GetName()|escape}" border="0" /></a>
{/if}
{assign var=arrayImage value= $objProduct->getArrayImage()}
{foreach from=$arrayImage item=image}
<a href="{$image->GetFullUrlId($objProduct->GetId(), 'Product')}" class="gallery" style="float: left; margin-right: 15px; margin-bottom: 15px;"><img src="{$image->GetFullUrlMiniId($objProduct->GetId(), 'Product')}" alt="{$objProduct->GetName()|escape}" title="{$objProduct->GetName()|escape}" border="0" /></a>
{/foreach}
</td>
</tr>
<tr>
<td colspan="2" style="text-align: center;">
{translate word='Niniejsza informacja handlowa nie jest ofertą w rozumieniu prawa'}
</td>
</tr>
</table>