|
@@ -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';
|
|
|
|
+ // }
|
|
|
|
+
|
|
|
|
+}
|