Piotr Labudda hace 5 años
commit
8409aa8356
Se han modificado 1 ficheros con 39 adiciones y 0 borrados
  1. 39 0
      theme/anton1.php

+ 39 - 0
theme/anton1.php

@@ -0,0 +1,39 @@
+<?php
+
+// TODO: file and class name must have the same name as project
+
+class Theme_anton1 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';
+	// }
+
+}