first commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
namespace ImageOptimization\Modules\Stats;
|
||||
|
||||
use ImageOptimization\Classes\Module_Base;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
class Module extends Module_Base {
|
||||
public function get_name(): string {
|
||||
return 'stats';
|
||||
}
|
||||
|
||||
public static function component_list(): array {
|
||||
return [
|
||||
'Optimization_Stats_Handler',
|
||||
];
|
||||
}
|
||||
public static function routes_list() : array {
|
||||
return [
|
||||
'Get_Stats',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Module constructor.
|
||||
*/
|
||||
public function __construct() {
|
||||
$this->register_routes();
|
||||
$this->register_components();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user