shoppingmallv2/app/Views/front/product/index.php
2023-08-10 14:51:58 +09:00

40 lines
1.8 KiB
PHP

<?= $this->extend('layouts/front') ?>
<?= $this->section('content') ?>
<link href="/css/front/content.css" media="screen" rel="stylesheet" type="text/css" />
<div id="content">
<div><?= html_entity_decode($viewDatas['category']->head) ?></div>
<div class="top">
<?= $this->include('templates/front/index_head_product') ?>
</div>
<?php $cnt = 0 ?>
<?php foreach ($viewDatas['entitys'] as $entity) : ?>
<table id="block" class="table">
<tbody>
<tr>
<td width="14%" rowspan="3"><?= $entity->getFileImage('middle') ?></td>
<td width="*">
<?= getFieldIndex_Row_ProductHelper('name', $entity, $viewDatas) ?>
<td>
<td width="6%" rowspan="3"><?= getFieldIndex_Column_ProductHelper('user_uid', $viewDatas) ?><BR><?= getFieldIndex_Row_ProductHelper('user_uid', $entity, $viewDatas) ?></td>
</tr>
<tr>
<td>
<?= getFieldIndex_Column_ProductHelper('price', $viewDatas) ?>:<b style="font-size:24px;"><?= getFieldIndex_Row_ProductHelper('price', $entity, $viewDatas) ?>원</b>
<span>
<?= getFieldIndex_Column_ProductHelper('cost', $viewDatas) ?>:<?= getFieldIndex_Row_ProductHelper('cost', $entity, $viewDatas) ?>원
-
<?= getFieldIndex_Column_ProductHelper('sale', $viewDatas) ?>:<?= getFieldIndex_Row_ProductHelper('sale', $entity, $viewDatas) ?>원
</span>
</td>
</tr>
<tr>
<td><?= getFieldIndex_Column_ProductHelper('view_cnt', $viewDatas) ?>:<?= getFieldIndex_Row_ProductHelper('view_cnt', $entity, $viewDatas) ?></td>
</tr>
</tbody>
</table>
<?php $cnt++ ?>
<?php endforeach ?>
<div class="bottom"><?= $viewDatas['pagination'] ?></div>
<div><?= html_entity_decode($viewDatas['category']->tail) ?></div>
</div>
<?= $this->endSection() ?>