assets
4 years ago
common
4 years ago
modals
4 years ago
pages
4 years ago
views
4 years ago
class-abstract-page.php
4 years ago
class-abstract-summary-page.php
4 years ago
class-admin.php
4 years ago
class-ajax.php
4 years ago
class-interface-page.php
4 years ago
class-media-library.php
4 years ago
class-interface-page.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Page interface. |
| 4 | * |
| 5 | * @package Smush\App |
| 6 | */ |
| 7 | |
| 8 | namespace Smush\App; |
| 9 | |
| 10 | if ( ! defined( 'WPINC' ) ) { |
| 11 | die; |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Interface Interface_Page |
| 16 | */ |
| 17 | interface Interface_Page { |
| 18 | /** |
| 19 | * Function triggered when the page is loaded before render any content. |
| 20 | */ |
| 21 | public function on_load(); |
| 22 | } |
| 23 | |
| 24 |