| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @version $Id: sysinfo_system.php 11713 2009-03-27 09:18:26Z willebil $ 4 */ 5 // No direct access 6 defined('_JEXEC') or die('Restricted access'); 7 8 ?> 9 <fieldset class="adminform"> 10 <legend><?php echo JText::_( 'System Information' ); ?></legend> 11 <table class="adminlist"> 12 <thead> 13 <tr> 14 <th width="250"> 15 <?php echo JText::_( 'Setting' ); ?> 16 </th> 17 <th> 18 <?php echo JText::_( 'Value' ); ?> 19 </th> 20 </tr> 21 </thead> 22 <tfoot> 23 <tr> 24 <th colspan="2"> 25 </th> 26 </tr> 27 </tfoot> 28 <tbody> 29 <tr> 30 <td valign="top"> 31 <strong><?php echo JText::_( 'PHP Built On' ); ?>:</strong> 32 </td> 33 <td> 34 <?php echo php_uname(); ?> 35 </td> 36 </tr> 37 <tr> 38 <td> 39 <strong><?php echo JText::_( 'Database Version' ); ?>:</strong> 40 </td> 41 <td> 42 <?php echo $db->getVersion(); ?> 43 </td> 44 </tr> 45 <tr> 46 <td> 47 <strong><?php echo JText::_( 'Database Collation' ); ?>:</strong> 48 </td> 49 <td> 50 <?php echo $db->getCollation(); ?> 51 </td> 52 </tr> 53 <tr> 54 <td> 55 <strong><?php echo JText::_( 'PHP Version' ); ?>:</strong> 56 </td> 57 <td> 58 <?php echo phpversion(); ?> 59 </td> 60 </tr> 61 <tr> 62 <td> 63 <strong><?php echo JText::_( 'Web Server' ); ?>:</strong> 64 </td> 65 <td> 66 <?php echo HTML_admin_misc::get_server_software(); ?> 67 </td> 68 </tr> 69 <tr> 70 <td> 71 <strong><?php echo JText::_( 'WebServer to PHP Interface' ); ?>:</strong> 72 </td> 73 <td> 74 <?php echo php_sapi_name(); ?> 75 </td> 76 </tr> 77 <tr> 78 <td> 79 <strong><?php echo JText::_( 'Joomla! Version' ); ?>:</strong> 80 </td> 81 <td> 82 <?php 83 $version = new JVersion(); 84 echo $version->getLongVersion(); 85 ?> 86 </td> 87 </tr> 88 <tr> 89 <td> 90 <strong><?php echo JText::_( 'User Agent' ); ?>:</strong> 91 </td> 92 <td> 93 <?php echo htmlspecialchars(phpversion() <= "4.2.1" ? getenv( "HTTP_USER_AGENT" ) : $_SERVER['HTTP_USER_AGENT'], ENT_QUOTES);?> 94 </td> 95 </tr> 96 </tbody> 97 </table> 98 </fieldset>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |