class-config.php in Lasso Lite – Affiliate Link Manager & Product Displays 116, at classes/class-config.php
| 1 | <?php |
| 2 | /** |
| 3 | * Declare class Config |
| 4 | * |
| 5 | * @package Config |
| 6 | */ |
| 7 | |
| 8 | namespace LassoLite\Classes; |
| 9 | |
| 10 | /** |
| 11 | * Config |
| 12 | */ |
| 13 | class Config { |
| 14 | /** |
| 15 | * Print header html |
| 16 | */ |
| 17 | public static function get_header() { |
| 18 | require_once SIMPLE_URLS_DIR . '/admin/views/header.php'; |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Print footer html |
| 23 | */ |
| 24 | public static function get_footer() { |
| 25 | require_once SIMPLE_URLS_DIR . '/admin/views/footer.php'; |
| 26 | } |
| 27 | } |
| 28 |