|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/settings/ |
Upload File : |
<?php /* $Id: SystemInformation.tpl 3575 2007-11-12 17:40:45Z will $ */ ?>
<?php TemplateUtility::printHeader('Settings', array('modules/settings/validator.js')); ?>
<?php TemplateUtility::printHeaderBlock(); ?>
<?php TemplateUtility::printTabs($this->active, $this->subActive); ?>
<div id="main">
<?php TemplateUtility::printQuickSearch(); ?>
<div id="contents">
<table>
<tr>
<td width="3%">
<img src="images/settings.gif" width="24" height="24" alt="Settings" style="border: none; margin-top: 3px;" />
</td>
<td><h2>Settings: Administration</h2></td>
</tr>
</table>
<p class="note">System Information</p>
<table class="editTable" width="700">
<tr>
<td class="tdVertical" colspan="2"><span style="font-weight: bold;">General Information</span></td>
</tr>
<tr>
<td class="tdVertical" style="width:250px;">
Operating System:
</td>
<td class="tdData">
<?php echo(php_uname()); ?>
</td>
</tr>
<tr>
<td class="tdVertical" style="width:250px;">
Operating System Type:
</td>
<td class="tdData">
CATS thinks your operating system is <span class="bold"><?php $this->_($this->OSType); ?>.</span>
</td>
</tr>
<tr>
<td class="tdVertical" style="width:250px;">
PHP Version:
</td>
<td class="tdData">
<?php echo(PHP_VERSION); ?>
</td>
</tr>
<tr>
<td class="tdVertical" style="width:250px;">
Database Version:
</td>
<td class="tdData">
<?php $this->_($this->databaseVersion); ?>
</td>
</tr>
<tr>
<td class="tdVertical" style="width:250px;">
Installation Directory:
</td>
<td class="tdData">
<?php $this->_($this->installationDirectory); ?>
</td>
</tr>
<tr>
<td class="tdVertical" colspan="2"> </td>
</tr>
<tr>
<td class="tdVertical" colspan="2"><span style="font-weight: bold;">Module Schema Version Information</span></td>
</tr>
<?php foreach ($this->schemaVersions as $rowIndex => $row): ?>
<tr>
<td class="tdVertical" style="width:250px;">
<?php $this->_($row['name']); ?>
</td>
<td class="tdData">
<?php echo($row['version']); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
<input type="button" name="back" class="button" value="Back" onclick="document.location.href='<?php echo(CATSUtility::getIndexName()); ?>?m=settings&a=administration';" />
</div>
</div>
<?php TemplateUtility::printFooter(); ?>