class-view.php
1.29 KB
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
56
57
58
59
60
61
62
63
<?php
/**
* BLC Dashboard admin page view.
*
* @link https://wordpress.org/plugins/broken-link-checker/
* @since 2.0.0
*
* @author WPMUDEV (https://wpmudev.com)
* @package WPMUDEV_BLC\App\Admin_Notice\Local
*
* @copyright (c) 2022, Incsub (http://incsub.com)
*/
namespace WPMUDEV_BLC\App\Admin_Modals\Local;
// Abort if called directly.
defined( 'WPINC' ) || die;
use WPMUDEV_BLC\Core\Utils\Abstracts\Base;
/**
* Class View
*
* @package WPMUDEV_BLC\App\Admin_Notice\Local
*/
class View extends Base {
/**
* The unique id that can be used by react. Sent over from Controller.
*
* @var int $unique_id
*
* @since 2.1
*/
public static $unique_id = null;
/**
* Renders the output.
*
* @param array $params Optional parameters ideal to hold the unique id generated in controller.
* @return void Renders the output.
* @since 2.1
*/
public function render( $params = array() ) {
self::$unique_id = isset( $params['unique_id'] ) ? $params['unique_id'] : null;
?>
<div class="sui-wrap wrap-blc wrap-blc-local-modal <?php echo 'wrap-' . esc_attr( self::$unique_id ); ?>">
<?php
$this->render_body();
?>
</div>
<?php
}
/**
* Renders view body.
*/
public function render_body() {
?>
<div id="<?php esc_attr_e( self::$unique_id ); ?>"></div>
<?php
}
}