shoppingmallv2/app/Views/front/product/index.php
2023-08-11 14:14:30 +09:00

40 lines
1.5 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 class="product table">
<tbody>
<tr>
<td width="14%" rowspan="3"><?= $entity->getFileImage('middle') ?></td>
<td class="title"><?= getFieldIndex_Row_ProductHelper('name', $entity, $viewDatas) ?></td>
<td width="6%" rowspan="3">
<?= getFieldIndex_Row_ProductHelper('user_uid', $entity, $viewDatas) ?>
</td>
</tr>
<tr>
<td>
<?= getFieldIndex_Row_ProductHelper('price', $entity, $viewDatas) ?>
<span>
<?= getFieldIndex_Row_ProductHelper('cost', $entity, $viewDatas) ?>
-
<?= getFieldIndex_Row_ProductHelper('sale', $entity, $viewDatas) ?>
</span>
</td>
</tr>
<tr>
<td><?= 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() ?>