mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-11 01:44:02 +01:00
42 lines
690 B
PHP
42 lines
690 B
PHP
|
<?php
|
||
|
defined('is_running') or die('Not an entry point...');
|
||
|
|
||
|
?>
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Typesetter Installation</title>
|
||
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||
|
<meta name="robots" content="noindex,nofollow"/>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function toggleOptions(){
|
||
|
var options = document.getElementById('config_options').style;
|
||
|
if( options.display == '' ){
|
||
|
options.display = 'none';
|
||
|
}else{
|
||
|
options.display = '';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<?php
|
||
|
\gp\install\Tools::AddCSs();
|
||
|
?>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="wrapper">
|
||
|
|
||
|
<?php
|
||
|
|
||
|
$installer = new \gp\install\Installer();
|
||
|
$installer->Run();
|
||
|
echo \gp\tool::ErrorBuffer(false);
|
||
|
?>
|
||
|
|
||
|
</div>
|
||
|
</body></html>
|