Fix pagination view namespace

This commit is contained in:
Dennis Eichhorn 2018-10-02 20:44:28 +02:00
parent abd1997c12
commit 8a7d6e2fb1
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ echo $this->getData('nav')->render(); ?>
<input type="radio" id="c-tab-7" name="tabular-2">
<div class="tab">
<?php
$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response);
$footerView = new \phpOMS\Views\PaginationView($this->app, $this->request, $this->response);
$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig');
$footerView->setPages(20);
$footerView->setPage(1);

View File

@ -11,7 +11,7 @@
* @link http://website.orange-management.de
*/
$footerView = new \Web\Views\Lists\PaginationView($this->app, $this->request, $this->response);
$footerView = new \phpOMS\Views\PaginationView($this->app, $this->request, $this->response);
$footerView->setTemplate('/Web/Templates/Lists/Footer/PaginationBig');
$footerView->setPages(20);
$footerView->setPage(1);