anton2.php 971 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. // TODO: file and class name must have the same name as project
  3. class Theme_anton2 extends ThemeDefault {
  4. // function head() { // TODO: echo 'html tag inside <head>'
  5. // }
  6. // function top() { // TODO: first tag after body: top menu or header
  7. // include dirname(__FILE__) . '/Bocian/top.php';
  8. // }
  9. // function footer() { // TODO: before </body>
  10. // include dirname(__FILE__) . '/view/footer.php';
  11. // }
  12. // function login($data) { // TODO: login view
  13. // if (is_array($data) && !empty($data)) {
  14. // extract($data);
  15. // }
  16. // include dirname(__FILE__) . '/view/login.php';
  17. // }
  18. // function logout($data) { // TODO: logout view
  19. // if (is_array($data) && !empty($data)) {
  20. // extract($data);
  21. // }
  22. // include dirname(__FILE__) . '/view/logout.php';
  23. // }
  24. // function home($data) { // TODO: home page view
  25. // if (is_array($data) && !empty($data)) {
  26. // extract($data);
  27. // }
  28. // include dirname(__FILE__) . '/view/home.php';
  29. // }
  30. }