first
This commit is contained in:
23
wp-content/plugins/wp-smushit/app/class-interface-page.php
Normal file
23
wp-content/plugins/wp-smushit/app/class-interface-page.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* Page interface.
|
||||
*
|
||||
* @package Smush\App
|
||||
*/
|
||||
|
||||
namespace Smush\App;
|
||||
|
||||
if ( ! defined( 'WPINC' ) ) {
|
||||
die;
|
||||
}
|
||||
|
||||
/**
|
||||
* Interface Interface_Page
|
||||
*/
|
||||
interface Interface_Page {
|
||||
/**
|
||||
* Function triggered when the page is loaded before render any content.
|
||||
*/
|
||||
public function on_load();
|
||||
}
|
||||
|
Reference in New Issue
Block a user