Piotr Labudda 10 лет назад
Родитель
Сommit
b2172f14c0
1 измененных файлов с 15 добавлено и 0 удалено
  1. 15 0
      SE/se-lib/Route/TableMsgs.php

+ 15 - 0
SE/se-lib/TableMsgs.php → SE/se-lib/Route/TableMsgs.php

@@ -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
 	}
 
 }