page-assets-it.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace JFB_Components\Admin\Print_Page\Interfaces; |
| 5 | |
| 6 | // If this file is called directly, abort. |
| 7 | if ( ! defined( 'WPINC' ) ) { |
| 8 | die; |
| 9 | } |
| 10 | |
| 11 | interface Page_Assets_It { |
| 12 | |
| 13 | public function add_script( string $handle ); |
| 14 | |
| 15 | public function add_scripts( array $handles ); |
| 16 | |
| 17 | public function add_style( string $handle ); |
| 18 | |
| 19 | public function add_styles( array $handles ); |
| 20 | |
| 21 | public function do_scripts(); |
| 22 | |
| 23 | public function do_styles(); |
| 24 | |
| 25 | } |
| 26 |