-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
176 lines (147 loc) · 3.47 KB
/
functions.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<?php
/**
* Fork functions file
*
* @author Themeisle
* @package fork
* @since 1.0.0
*/
namespace Fork;
/**
* Bootstrap the theme.
*
* @return void
*/
function bootstrap() {
global $_fork_bootstrap_errors;
$_fork_bootstrap_errors = new \WP_Error();
check_php();
define_constants();
check_build_files();
maybe_add_notices();
load_sdk();
load_dependencies();
run();
}
/**
* Checks that the PHP version is correct.
*
* @return void
*/
function check_php() {
global $_fork_bootstrap_errors;
if ( version_compare( PHP_VERSION, '7.0' ) > 0 ) {
return;
}
$_fork_bootstrap_errors->add(
'php_version',
sprintf(
/* translators: %s message to upgrade PHP to the latest version */
__( "Hey, we've noticed that you're running an outdated version of PHP which is no longer supported. Make sure your site is fast and secure, by %1\$s. Fork's minimal requirement is PHP%2\$s.", 'fork' ),
sprintf(
/* translators: %s message to upgrade PHP to the latest version */
'<a href="https://wordpress.org/support/upgrade-php/">%s</a>',
__( 'upgrading PHP to the latest version', 'fork' )
),
'7.0'
)
);
}
/**
* Define theme constants.
*
* @return void
*/
function define_constants() {
define( 'FORK_VERSION', '1.0.8' );
define( 'FORK_DEBUG', defined( 'WP_DEBUG' ) && WP_DEBUG === true );
define( 'FORK_DIR', trailingslashit( get_template_directory() ) );
define( 'FORK_URL', trailingslashit( get_template_directory_uri() ) );
}
/**
* Checks that the build files are present.
*
* @return void
*/
function check_build_files() {
if ( defined( 'FORK_IGNORE_SOURCE_CHECK' ) ) {
return;
}
$_files_to_check = array(
FORK_DIR . 'vendor/autoload.php',
FORK_DIR . 'assets/css/build/style.css',
FORK_DIR . 'assets/css/build/editor.css',
FORK_DIR . 'assets/css/build/style-rtl.css',
FORK_DIR . 'assets/css/build/editor-rtl.css',
);
foreach ( $_files_to_check as $file ) {
if ( is_file( $file ) ) {
continue;
}
global $_fork_bootstrap_errors;
$_fork_bootstrap_errors->add(
'build_missing',
sprintf(
/* translators: %s: commands to run the theme */
__( 'You appear to be running the Fork theme from source code. Please finish installation by running %s.', 'fork' ),
'<code>composer install --no-dev && yarn install --frozen-lockfile && yarn run build</code>'
)
);
return;
}
}
/**
* Adds notices if something went wrong and activates the default theme.
*
* @return void
*/
function maybe_add_notices() {
global $_fork_bootstrap_errors;
if ( ! $_fork_bootstrap_errors->has_errors() ) {
return;
}
add_filter( 'template_include', '__return_null', 99 );
switch_theme( WP_DEFAULT_THEME );
unset( $_GET['activated'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
add_action(
'admin_notices',
function () {
global $_fork_bootstrap_errors;
printf( '<div class="notice notice-error"><p>%1$s</p></div>', wp_kses_post( $_fork_bootstrap_errors->get_error_message() ) );
}
);
}
/**
* Load SDK.
*
* @return void
*/
function load_sdk() {
add_filter(
'themeisle_sdk_products',
function ( $products ) {
$products[] = FORK_DIR . 'style.css';
return $products;
}
);
}
/**
* Load composer dependencies.
*
* @return void
*/
function load_dependencies() {
$vendor_file = FORK_DIR . '/vendor/autoload.php';
if ( is_readable( $vendor_file ) ) {
require_once $vendor_file;
}
}
/**
* Run theme core.
*
* @return void
*/
function run() {
Core::get_instance();
}
bootstrap();