mirror of
https://github.com/Karaka-Management/oms-QualityManagement.git
synced 2026-01-11 14:08:41 +00:00
bump
This commit is contained in:
parent
46aead9290
commit
02159c83dd
|
|
@ -44,7 +44,28 @@ final class BackendController extends Controller
|
|||
public function viewPrivateReportDashboard(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface
|
||||
{
|
||||
$view = new View($this->app->l11nManager, $request, $response);
|
||||
$view->setTemplate('/Modules/Support/Theme/Backend/report-list');
|
||||
$view->setTemplate('/Modules/QualityManagement/Theme/Backend/report-list');
|
||||
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1002901101, $request, $response);
|
||||
|
||||
return $view;
|
||||
}
|
||||
|
||||
/**
|
||||
* Routing end-point for application behavior.
|
||||
*
|
||||
* @param RequestAbstract $request Request
|
||||
* @param ResponseAbstract $response Response
|
||||
* @param array $data Generic data
|
||||
*
|
||||
* @return RenderableInterface
|
||||
*
|
||||
* @since 1.0.0
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function viewReportDashboard(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface
|
||||
{
|
||||
$view = new View($this->app->l11nManager, $request, $response);
|
||||
$view->setTemplate('/Modules/QualityManagement/Theme/Backend/report-dashboard');
|
||||
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1002901101, $request, $response);
|
||||
|
||||
return $view;
|
||||
|
|
|
|||
9
Theme/Backend/report-dashboard.tpl.php
Normal file
9
Theme/Backend/report-dashboard.tpl.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<section class="portlet">
|
||||
<div class="portlet-body">
|
||||
<img height="100%" width="100%" src="Web/Backend/img/under_construction.svg">
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
9
Theme/Backend/report-list.tpl.php
Normal file
9
Theme/Backend/report-list.tpl.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<section class="portlet">
|
||||
<div class="portlet-body">
|
||||
<img height="100%" width="100%" src="Web/Backend/img/under_construction.svg">
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Reference in New Issue
Block a user