-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathmain.php
202 lines (181 loc) · 8.47 KB
/
main.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
/**
* Functions for displaying theme information, test results, and the form
*
* @package Theme Check
*/
/**
* Present theme information and test results.
*
* @param string $theme_slug theme slug of the theme to be tested.
*/
function check_main( $theme_slug ) {
global $checkcount;
/**
* Get theme data. Return early if the theme is not found.
*
* @link https://developer.wordpress.org/reference/functions/wp_get_theme/
*/
$theme = wp_get_theme( $theme_slug );
if ( ! $theme->exists() ) {
return;
}
// Run the checks.
$success = run_themechecks_against_theme( $theme, $theme_slug );
// Display theme info.
echo '<h2>' . esc_html__( 'Theme Info', 'theme-check' ) . ': </h2>';
echo '<div class="theme-info">';
$screenshot = $theme->get_screenshot( 'relative' );
if ( $screenshot ) {
$screenshot_file = $theme->get_stylesheet_directory() . '/' . $screenshot;
$image_size = getimagesize( $screenshot_file );
$image_filesize = filesize( $screenshot_file );
echo '<div style="float:right" class="theme-info"><img style="max-height:180px;" src="' . esc_url( $theme->get_screenshot() ) . '" />';
echo '<br /><div style="text-align:center">' . intval( $image_size[0] ) . 'x' . intval( $image_size[1] ) . ' ' . round( $image_filesize / 1024 ) . 'k</div></div>';
}
echo ( ! empty( $theme['Title'] ) ) ? '<p><label>' . esc_html__( 'Title', 'theme-check' ) . '</label><span class="info">' . esc_html( $theme['Title'] ) . '</span></p>' : '';
echo ( ! empty( $theme['Version'] ) ) ? '<p><label>' . esc_html__( 'Version', 'theme-check' ) . '</label><span class="info">' . esc_html( $theme['Version'] ) . '</span></p>' : '';
echo ( ! empty( $theme->get( 'Author' ) ) ) ? '<p><label>' . esc_html__( 'Author', 'theme-check' ) . '</label><span class="info">' . esc_html( $theme->get( 'Author' ) ) . '</span></p>' : '';
echo ( ! empty( $theme->get( 'AuthorURI' ) ) ) ? '<p><label>' . esc_html__( 'Author URI', 'theme-check' ) . '</label><span class="info"><a href="' . esc_url( $theme->get( 'AuthorURI' ) ) . '">' . esc_html( $theme->get( 'AuthorURI' ) ) . '</a></span></p>' : '';
echo ( ! empty( $theme->get( 'ThemeURI' ) ) ) ? '<p><label>' . esc_html__( 'Theme URI', 'theme-check' ) . '</label><span class="info"><a href="' . esc_url( $theme->get( 'ThemeURI' ) ) . '">' . esc_html( $theme->get( 'ThemeURI' ) ) . '</a></span></p>' : '';
echo ( ! empty( $theme->get( 'License' ) ) ) ? '<p><label>' . esc_html__( 'License', 'theme-check' ) . '</label><span class="info">' . esc_html( $theme->get( 'License' ) ) . '</span></p>' : '';
echo ( ! empty( $theme->get( 'License URI' ) ) ) ? '<p><label>' . esc_html__( 'License URI', 'theme-check' ) . '</label><span class="info">' . esc_html( $theme->get( 'License URI' ) ) . '</span></p>' : '';
echo ( ! empty( $theme['Tags'] ) ) ? '<p><label>' . esc_html__( 'Tags', 'theme-check' ) . '</label><span class="info">' . esc_html( implode( ', ', $theme['Tags'] ) ) . '</span></p>' : '';
echo ( ! empty( $theme['Description'] ) ) ? '<p><label>' . esc_html__( 'Description', 'theme-check' ) . '</label><span class="info">' . esc_html( $theme['Description'] ) . '</span></p>' : '';
if ( $theme->parent() ) {
echo '<p>';
printf(
/* translators: %s: Name of the parent theme. */
esc_html__( 'This is a child theme. The parent theme is: %s. These files have been included automatically!', 'theme-check' ),
'<strong>' . esc_html( $theme['Template'] ) . '</strong>'
);
echo '</p>';
}
if ( $theme['Template Version'] /* Not supported by WordPress */ ) {
$parent_theme = $theme->parent();
if ( $theme['Template Version'] > $parent_theme['Version'] ) {
echo '<p>';
printf(
esc_html__( 'This child theme requires at least version %1$s of theme %2$s to be installed. You only have %3$s please update the parent theme.', 'theme-check' ),
'<strong>' . esc_html( $theme['Template Version'] ) . '</strong>',
'<strong>' . esc_html( $parent_theme['Title'] ) . '</strong>',
'<strong>' . esc_html( $parent_theme['Version'] ) . '</strong>'
);
echo '</p>';
}
if ( empty( $theme['Template Version'] ) ) {
echo '<p>' . __( 'Child theme does not have the <strong>Template Version</strong> tag in style.css.', 'theme-check' ) . '</p>';
} elseif ( $theme['Template Version'] < $parent_theme['Version'] ) {
echo '<p>';
printf(
esc_html__( 'Child theme is only tested up to version %1$s of %2$s breakage may occur! %3$s installed version is %4$s', 'theme-check' ),
esc_html( $theme['Template Version'] ),
esc_html( $parent_theme['Title'] ),
esc_html( $parent_theme['Title'] ),
esc_html( $parent_theme['Version'] )
);
echo '</p>';
}
}
echo '</div><!-- .theme-info-->';
echo '<p>' . sprintf(
esc_html__( 'Running %1$s tests against %2$s.', 'theme-check' ),
'<strong>' . esc_html( $checkcount ) . '</strong>',
'<strong>' . esc_html( $theme['Title'] ) . '</strong>'
) . '</p>';
$results = display_themechecks();
if ( ! $success ) {
echo '<h2>' . sprintf( __( 'One or more errors were found for %1$s.', 'theme-check' ), esc_html( $theme['Title'] ) ) . '</h2>';
} else {
echo '<h2>' . sprintf( __( '%1$s passed the tests', 'theme-check' ), esc_html( $theme['Title'] ) ) . '</h2>';
tc_success();
}
if ( ! defined( 'WP_DEBUG' ) || ! WP_DEBUG ) {
echo '<div class="updated">';
echo '<span class="tc-fail">';
echo esc_html__( 'WARNING', 'theme-check' );
echo '</span> ';
echo '<strong>';
echo esc_html__( 'WP_DEBUG is not enabled!', 'theme-check' );
echo '</strong>';
printf(
/* translators: %1$s is an opening anchor tag. %2$s is the closing part of the tag. */
esc_html__( 'Please test your theme with %1$sdebug enabled%2$s before you upload!', 'theme-check' ),
'<a href="https://wordpress.org/support/article/editing-wp-config-php/">',
'</a>'
);
echo '</div>';
}
echo '<div class="tc-box">';
echo '<ul class="tc-result">';
echo wp_kses(
$results,
array(
'li' => array(),
'span' => array(
'class' => array(),
),
'strong' => array(),
'code' => array(),
'pre' => array(),
'a' => array(
'href' => array(),
),
)
);
echo '</ul></div>';
}
function tc_intro() {
?>
<h2><?php _e( 'About', 'theme-check' ); ?></h2>
<p><?php _e( "The Envato Theme Check plugin is an easy way to test your theme and make sure it's up to date with the latest Themeforest review standards. With it, you can run all the same automated testing tools on your theme that Themeforest Reviewers use for theme submissions.", 'theme-check' ); ?></p>
<?php
}
/**
* Present information about submitting themes.
*/
function tc_success() {
?>
<div class="tc-success"><p><?php esc_html_e( 'Now that your theme has passed the basic tests you need to check it properly using the test data before you upload it to the WordPress Themes Directory.', 'theme-check' ); ?></p>
<p>
<?php
printf(
/* translators: %1$s is an opening anchor tag. %2$s is the closing part of the tag. */
esc_html__( 'Make sure to review the guidelines at %1$sTheme Review%2$s before uploading a Theme.', 'theme-check' ),
'<a href="https://make.wordpress.org/themes/handbook/review/required/">',
'</a>'
);
?>
</p>
<h3><?php esc_html_e( 'Useful Links', 'theme-check' ); ?></h3>
<ul>
<li><a href="https://developer.wordpress.org/themes/"><?php esc_html_e( 'Theme Handbook', 'theme-check' ); ?></a></li>
<li><a href="https://wordpress.org/support/forum/wp-advanced/"><?php esc_html_e( 'Developing with WordPress Forum', 'theme-check' ); ?></a></li>
<li><a href="https://github.com/WPTRT/theme-unit-test"><?php esc_html_e( 'Theme Unit Tests', 'theme-check' ); ?></a></li>
</ul></div>
<?php
}
/**
* Print the form for selecting the theme to test.
*/
function tc_form() {
echo '<form action="themes.php?page=themecheck" method="post">';
echo '<select name="themename">';
$selected_theme = isset( $_POST['themename'] ) ? wp_unslash( $_POST['themename'] ) : get_stylesheet();
foreach ( wp_get_themes() as $theme ) {
printf(
'<option %s value="%s">%s</option>',
selected( $selected_theme, $theme['Stylesheet'], false ),
esc_attr( $theme['Stylesheet'] ),
esc_html( $theme['Name'] )
);
}
echo '</select>';
echo '<input class="button" type="submit" value="' . esc_attr__( 'Check it!', 'theme-check' ) . '" />';
if ( defined( 'TC_PRE' ) || defined( 'TC_POST' ) ) {
echo ' <input name="trac" type="checkbox" /> ' . esc_html__( 'Output in Trac format.', 'theme-check' );
}
echo '<input name="s_info" type="checkbox" /> ' . esc_html__( 'Suppress INFO.', 'theme-check' );
wp_nonce_field( 'themecheck-nonce' );
echo '</form>';
}