-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompatibility.php
128 lines (94 loc) · 2.16 KB
/
Compatibility.php
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
/**
* Simple compatibility helper class
*
* @package ThemePlate
* @since 0.1.0
*/
namespace ThemePlate;
use ThemePlate\Compatibility\Checker;
use ThemePlate\Compatibility\Notice;
use ThemePlate\Compatibility\Requirements\PHPVersion;
use ThemePlate\Compatibility\Requirements\WPVersion;
class Compatibility {
protected Checker $checker;
protected array $messages = array(
'header' => '%s compatibility issue:',
'WPVersion' => 'Requires at least WordPress version %1$s (Installed v%2$s)',
'PHPVersion' => 'Requires at least PHP version %1$s (Installed v%2$s)',
);
public function __construct( string $wp_version, string $php_version = '7.4' ) {
$this->checker = new Checker();
$this->checker->add( new WPVersion( $wp_version ) );
$this->checker->add( new PHPVersion( $php_version ) );
}
/**
* Set the notice header message
*
*
* @param string $message printf format
*
* Available directives:
*
* 1. %s - package name
*
*
* @return $this
*/
public function message_header( string $message ): self {
$this->messages['header'] = $message;
return $this;
}
/**
* Set the WordPress error message
*
*
* @param string $message sprintf format
*
* Available directives:
*
* 1. %s - required version
*
* 2. %s - installed version
*
*
* @return $this
*/
public function message_wp( string $message ): self {
$this->messages['WPVersion'] = $message;
return $this;
}
/**
* Set the PHP error message
*
*
* @param string $message sprintf format
*
*
* Available directives:
*
* 1. %s - required version
*
* 2. %s - installed version
*
*
* @return $this
*/
public function message_php( string $message ): self {
$this->messages['PHPVersion'] = $message;
return $this;
}
public function setup( string $package_name ): void {
$this->checker->run( $this->messages );
$handler = $this->checker->get_error();
if ( ! $handler->has_errors() ) {
return;
}
( new Notice( 'warning' ) )->set_header(
sprintf(
$this->messages['header'],
'<strong>' . $package_name . '</strong>'
)
)->set_error( $handler )->print();
}
}