bocian.php 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. // TODO: file and class name must have the same name as project
  3. class Theme_bocian 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. echo '<footer>bocian...</footer>';
  11. // include dirname(__FILE__) . '/view/footer.php';
  12. }
  13. // function login($data) { // TODO: login view
  14. // if (is_array($data) && !empty($data)) {
  15. // extract($data);
  16. // }
  17. // include dirname(__FILE__) . '/view/login.php';
  18. // }
  19. // function logout($data) { // TODO: logout view
  20. // if (is_array($data) && !empty($data)) {
  21. // extract($data);
  22. // }
  23. // include dirname(__FILE__) . '/view/logout.php';
  24. // }
  25. // function home($data) { // TODO: home page view
  26. // if (is_array($data) && !empty($data)) {
  27. // extract($data);
  28. // }
  29. // include dirname(__FILE__) . '/view/home.php';
  30. // }
  31. }