Templating

This commit is contained in:
Dennis Eichhorn 2015-12-19 19:35:25 +01:00
parent 4089198aed
commit 635f898b8e
2 changed files with 34 additions and 3 deletions

View File

@ -13,7 +13,36 @@
* @version 1.0.0 * @version 1.0.0
* @link http://orange-management.com * @link http://orange-management.com
*/ */
/**
* @var \phpOMS\Views\View $this $footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response);
*/ $footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig');
$footerView->setPages(20);
$footerView->setPage(1);
echo $this->getData('nav')->render(); ?> echo $this->getData('nav')->render(); ?>
<section class="box w-100">
<table class="table">
<caption><?= $this->l11n->lang['SupplierManagement']['Suppliers'] ?></caption>
<thead>
<tr>
<td><?= $this->l11n->lang[0]['ID']; ?>
<td><?= $this->l11n->lang['SupplierManagement']['Name1']; ?>
<td><?= $this->l11n->lang['SupplierManagement']['Name2']; ?>
<td class="wf-100"><?= $this->l11n->lang['SupplierManagement']['Name3']; ?>
<td><?= $this->l11n->lang['SupplierManagement']['City']; ?>
<td><?= $this->l11n->lang['SupplierManagement']['Zip']; ?>
<td><?= $this->l11n->lang['SupplierManagement']['Address']; ?>
<td><?= $this->l11n->lang['SupplierManagement']['Country']; ?>
<tfoot>
<tr>
<td colspan="8"><?= $footerView->render(); ?>
<tbody>
<?php $count = 0; foreach([] as $key => $value) : $count++; ?>
<?php endforeach; ?>
<?php if($count === 0) : ?>
<tr><td colspan="8" class="empty"><?= $this->l11n->lang[0]['Empty']; ?>
<?php endif; ?>
</table>
</section>

View File

@ -18,6 +18,7 @@ $MODLANG['SupplierManagement'] = [
'Address' => 'Address', 'Address' => 'Address',
'Addresses' => 'Addresses', 'Addresses' => 'Addresses',
'Articlegroup' => 'Articlegroup', 'Articlegroup' => 'Articlegroup',
'City' => 'City',
'Contact' => 'Contact', 'Contact' => 'Contact',
'Country' => 'Country', 'Country' => 'Country',
'Creditcard' => 'Creditcard', 'Creditcard' => 'Creditcard',
@ -47,6 +48,7 @@ $MODLANG['SupplierManagement'] = [
'Subtype' => 'Subtype', 'Subtype' => 'Subtype',
'Support' => 'Support', 'Support' => 'Support',
'Supplier' => 'Supplier', 'Supplier' => 'Supplier',
'Suppliers' => 'Suppliers',
'Type' => 'Type', 'Type' => 'Type',
'Wire' => 'Wire', 'Wire' => 'Wire',
'Zip' => 'Zip', 'Zip' => 'Zip',