interfaces
2 years ago
templates
2 years ago
traits
2 years ago
footer.php
2 years ago
header.php
2 years ago
footer.php
27 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Components\Admin\Print_Page; |
| 5 | |
| 6 | use JFB_Components\Admin\Print_Page\Interfaces\Page_Assets_It; |
| 7 | use JFB_Components\Admin\Print_Page\Interfaces\Page_Output_It; |
| 8 | use JFB_Components\Admin\Print_Page\Traits\Page_Assets_Trait; |
| 9 | |
| 10 | // If this file is called directly, abort. |
| 11 | if ( ! defined( 'WPINC' ) ) { |
| 12 | die; |
| 13 | } |
| 14 | |
| 15 | class Footer implements Page_Assets_It, Page_Output_It { |
| 16 | |
| 17 | use Page_Assets_Trait; |
| 18 | |
| 19 | public function output() { |
| 20 | echo '</div></div>'; |
| 21 | $this->do_styles(); |
| 22 | $this->do_scripts(); |
| 23 | echo '</body></html>'; |
| 24 | } |
| 25 | |
| 26 | } |
| 27 |