43 lines
1.9 KiB
PHP
43 lines
1.9 KiB
PHP
<?php
|
|
include_once 'Sample_Header.php';
|
|
$requirements = array(
|
|
'php' => array('PHP 5.3.0', version_compare(phpversion(), '5.3.0', '>=')),
|
|
'xml' => array('PHP extension XML', extension_loaded('xml')),
|
|
'temp' => array('Temp folder "<code>' . sys_get_temp_dir() . '</code>" is writable', is_writable(sys_get_temp_dir())),
|
|
'zip' => array('PHP extension ZipArchive (optional)', extension_loaded('zip')),
|
|
'gd' => array('PHP extension GD (optional)', extension_loaded('gd')),
|
|
'xmlw' => array('PHP extension XMLWriter (optional)', extension_loaded('xmlwriter')),
|
|
'xsl' => array('PHP extension XSL (optional)', extension_loaded('xsl')),
|
|
);
|
|
if (!CLI) {
|
|
?>
|
|
<div class="jumbotron">
|
|
<p>Welcome to PHPWord, a library written in pure PHP that provides a set of classes to write to and read from different document file formats, i.e. Office Open XML (.docx), Open Document Format (.odt), and Rich Text Format (.rtf).</p>
|
|
<p> </p>
|
|
<p>
|
|
<a class="btn btn-lg btn-primary" href="https://github.com/PHPOffice/PHPWord" role="button"><i class="fa fa-github fa-lg" title="GitHub"></i> Fork us on Github!</a>
|
|
<a class="btn btn-lg btn-primary" href="http://phpword.readthedocs.org/en/develop/" role="button"><i class="fa fa-book fa-lg" title="Docs"></i> Read the Docs</a>
|
|
</p>
|
|
</div>
|
|
<?php
|
|
}
|
|
if (!CLI) {
|
|
echo "<h3>Requirement check:</h3>";
|
|
echo "<ul>";
|
|
foreach ($requirements as $key => $value) {
|
|
list($label, $result) = $value;
|
|
$status = $result ? 'passed' : 'failed';
|
|
echo "<li>{$label} ... <span class='{$status}'>{$status}</span></li>";
|
|
}
|
|
echo "</ul>";
|
|
include_once 'Sample_Footer.php';
|
|
} else {
|
|
echo 'Requirement check:' . PHP_EOL;
|
|
foreach ($requirements as $key => $value) {
|
|
list($label, $result) = $value;
|
|
$label = strip_tags($label);
|
|
$status = $result ? '32m passed' : '31m failed';
|
|
echo "{$label} ... \033[{$status}\033[0m" . PHP_EOL;
|
|
}
|
|
}
|