Warning, file /webapps/ocs-fileserver/library/Flooer/Application/pages/info.phtml was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 <?
0002 require_once 'Flooer/Version.php';
0003 ?><!DOCTYPE html>
0004 <html lang="en">
0005 <head>
0006 
0007 <meta charset="<?=$this->getApplication()->getConfig('encoding');?>">
0008 
0009 <!--[if lte IE 9]>
0010 <script>
0011 <?php require 'Flooer/Application/pages/html5.js'; ?>
0012 </script>
0013 <![endif]-->
0014 
0015 <style>
0016 <?php require 'Flooer/Application/pages/style.css'; ?>
0017 </style>
0018 
0019 <title>Application Information</title>
0020 
0021 </head>
0022 <body>
0023 
0024 <header>
0025 <h1>Application Information</h1>
0026 </header>
0027 
0028 <article>
0029 <h2>Configuration Options</h2>
0030 <dl>
0031 <?php foreach ($this->getApplication()->getConfigs() as $key => $value): ?>
0032 <dt><?=$key;?></dt>
0033 <?php if (is_array($value)): ?>
0034 <dd><pre><?php print_r($value); ?></pre></dd>
0035 <?php elseif (is_object($value)): ?>
0036 <dd><?=get_class($value);?></dd>
0037 <?php else: ?>
0038 <dd><?=$value;?></dd>
0039 <?php endif; endforeach; ?>
0040 </dl>
0041 </article>
0042 
0043 <article>
0044 <h2>Application Resources</h2>
0045 <dl>
0046 <?php foreach ($this->getApplication()->getResources() as $key => $value): ?>
0047 <dt><?=$key;?></dt>
0048 <?php if (is_array($value)): ?>
0049 <dd><pre><?php print_r($value); ?></pre></dd>
0050 <?php elseif (is_object($value)): ?>
0051 <dd><?=get_class($value);?></dd>
0052 <?php else: ?>
0053 <dd><?=$value;?></dd>
0054 <?php endif; endforeach; ?>
0055 </dl>
0056 </article>
0057 
0058 <article>
0059 <h2>System Information</h2>
0060 <dl>
0061 <dt>Flooer Framework</dt>
0062 <dd>Version: <?=Flooer_Version::VERSION;?></dd>
0063 <dt>PHP</dt>
0064 <dd>Version: <?=PHP_VERSION;?></dd>
0065 <dt>Server</dt>
0066 <dd>OS: <?=PHP_OS;?></dd>
0067 <dd>Software: <?=$_SERVER['SERVER_SOFTWARE'];?></dd>
0068 </dl>
0069 </article>
0070 
0071 <footer>
0072 <p>Thank you for using <a href="https://github.com/akiraohgaki/flooer">Flooer Framework</a>.</p>
0073 </footer>
0074 
0075 </body>
0076 </html>