| 1 |
<?php |
| 2 |
// define( 'WP_DEBUG', false ); |
| 3 |
// ini_set( 'display_errors', false ); |
| 4 |
require_once dirname( __FILE__ ) . '/troubleshoot.php'; |
| 5 |
$app = pd_troubleshoot(); |
| 6 |
|
| 7 |
?> |
| 8 |
<!DOCTYPE html> |
| 9 |
<html> |
| 10 |
<head> |
| 11 |
<meta charset="utf-8"> |
| 12 |
<title>Plugin Detective</title> |
| 13 |
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic"> |
| 14 |
<link rel="stylesheet" href="//fonts.googleapis.com/icon?family=Material+Icons"> |
| 15 |
<link href="<?php echo $app->url('app/dist/static/css/app.css' ); ?>" rel="stylesheet"> |
| 16 |
</head> |
| 17 |
<body> |
| 18 |
<div id="app"></div> |
| 19 |
|
| 20 |
<script type='text/javascript'> |
| 21 |
var app = <?php echo json_encode( $app->get_api_params() ); ?>; |
| 22 |
var pd_translations = <?php echo json_encode( $app->get_translations() ); ?>; |
| 23 |
</script> |
| 24 |
<script type=text/javascript src="<?php echo $app->url('app/dist/static/js/manifest.js' ).'?v='.PD_Troubleshoot::VERSION; ?>"></script> |
| 25 |
<script type=text/javascript src="<?php echo $app->url('app/dist/static/js/chunk-vendors.js' ).'?v='.PD_Troubleshoot::VERSION; ?>"></script> |
| 26 |
<script type=text/javascript src="<?php echo $app->url('app/dist/static/js/app.js' ).'?v='.PD_Troubleshoot::VERSION; ?>"></script> |
| 27 |
</body> |
| 28 |
</html> |
| 29 |
|