1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- class Theme_BraveCare 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';
- // }
- }
|