Piotr Labudda 5 jaren geleden
commit
ac2d0a725f
1 gewijzigde bestanden met toevoegingen van 39 en 0 verwijderingen
  1. 39 0
      theme/anton2.php

+ 39 - 0
theme/anton2.php

@@ -0,0 +1,39 @@
+<?php
+
+// TODO: file and class name must have the same name as project
+
+class Theme_anton2 extends ThemeDefault {
+
+	// function head() { // TODO: echo 'html tag inside <head>'
+	// }
+
+	// function top() { // TODO: first tag after body: top menu or header
+	// 	include dirname(__FILE__) . '/Bocian/top.php';
+	// }
+
+	// function footer() { // TODO: before </body>
+	// 	include dirname(__FILE__) . '/view/footer.php';
+	// }
+
+	// function login($data) { // TODO: login view
+	// 	if (is_array($data) && !empty($data)) {
+	// 		extract($data);
+	// 	}
+	// 	include dirname(__FILE__) . '/view/login.php';
+	// }
+
+	// function logout($data) { // TODO: logout view
+	// 	if (is_array($data) && !empty($data)) {
+	// 		extract($data);
+	// 	}
+	// 	include dirname(__FILE__) . '/view/logout.php';
+	// }
+
+	// function home($data) { // TODO: home page view
+	// 	if (is_array($data) && !empty($data)) {
+	// 		extract($data);
+	// 	}
+	// 	include dirname(__FILE__) . '/view/home.php';
+	// }
+
+}