BraveCare.php 910 B

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