add_hooks(); } /** * Displays admin notice about unmet PHP version requirement. * * @since 1.0.0 */ function wp_plugin_check_display_php_version_notice() { echo '
'; printf( /* translators: 1: required version, 2: currently used version */ esc_html__( 'Plugin Check requires at least PHP version %1$s. Your site is currently running on PHP %2$s.', 'plugin-check' ), esc_html( WP_PLUGIN_CHECK_MINIMUM_PHP ), esc_html( phpversion() ) ); echo '
';
printf(
/* translators: composer command. */
esc_html__( 'Your installation of the Plugin Check plugin is incomplete. Please run %s.', 'plugin-check' ),
'composer install'
);
echo '