interface-admin-view.php
918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* Interface for admin pages view.
*
* @link https://wordpress.org/plugins/broken-link-checker/
* @since 2.0.0
*
* @author Panos Lyrakis <panos.lyrakis@incsub.com>
* @package WPMUDEV_BLC\Core\Interfaces
*
* @copyright (c) 2022, Incsub (http://incsub.com)
*/
namespace WPMUDEV_BLC\Core\Interfaces;
// Abort if called directly.
defined( 'WPINC' ) || die;
interface Admin_View {
/**
* Renders the admin page full view.
*
* @since 2.0.0
*
* @return void
*/
public function render( $params = array() );
/**
* Renders the page footer.
*
* @since 2.0.0
*
* @return void
*/
public function render_header();
/**
* Renders the page body content.
*
* @since 2.0.0
*
* @return void
*/
public function render_body();
/**
* Renders the page footer.
*
* @since 2.0.0
*
* @return void Renders the page footer.
*/
public function render_footer();
}