|
|
@@ -34,6 +34,21 @@ class Route_TableMsgs extends RouteBase {
|
|
|
$idRow = V::get('idRow', 0, $_REQUEST, 'int');
|
|
|
if ($idTable <= 0) throw new HttpException("Błęny numer tabeli", 400);
|
|
|
if ($idRow <= 0) throw new HttpException("Błęny numer tabeli", 400);
|
|
|
+
|
|
|
+ SE_Layout::gora();
|
|
|
+ SE_Layout::menu();
|
|
|
+
|
|
|
+ $this->tableRowMsgs();
|
|
|
+
|
|
|
+ SE_Layout::dol();
|
|
|
+ }
|
|
|
+
|
|
|
+ public function tableRowMsgs($idTable, $idRow) {
|
|
|
+ ?>
|
|
|
+<div class="container">
|
|
|
+ <h3>Wiadomości powiązane z rekordem [<?php echo $idRow; ?>] tabeli [<?php echo $idTable; ?>]</h3>
|
|
|
+</div>
|
|
|
+<?php
|
|
|
}
|
|
|
|
|
|
}
|