|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace JFB_Components\Admin\Page\Interfaces; |
|
5
|
|
|
6
|
// If this file is called directly, abort. |
|
7
|
if ( ! defined( 'WPINC' ) ) { |
|
8
|
die; |
|
9
|
} |
|
10
|
|
|
11
|
interface Action_Page_It extends Admin_Page_It { |
|
12
|
|
|
13
|
public function check_permission(): bool; |
|
14
|
|
|
15
|
} |
|
16
|
|