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

0001 <!DOCTYPE html>
0002 <html lang="en">
0003 <head>
0004 
0005 <meta charset="<?=$this->getApplication()->getConfig('encoding');?>">
0006 
0007 <!--[if lte IE 9]>
0008 <script>
0009 <?php require 'Flooer/Application/pages/html5.js'; ?>
0010 </script>
0011 <![endif]-->
0012 
0013 <style>
0014 <?php require 'Flooer/Application/pages/style.css'; ?>
0015 </style>
0016 
0017 <title>Technical Information</title>
0018 
0019 </head>
0020 <body>
0021 
0022 <header>
0023 <h1>Technical Information</h1>
0024 </header>
0025 
0026 <?php if (in_array($this->getApplication()->getConfig('environment'), array('production', 'staging'))): ?>
0027 
0028 <article>
0029 <h2>Exception</h2>
0030 <dl>
0031 <dt>Message</dt>
0032 <dd><?=$this->getApplication()->getResource('exception')->getMessage();?></dd>
0033 </dl>
0034 </article>
0035 
0036 <?php if ($this->getApplication()->getResource('exception')->getPreviousException()): ?>
0037 <article>
0038 <h2>Previous Exception</h2>
0039 <dl>
0040 <dt>Message</dt>
0041 <dd><?=$this->getApplication()->getResource('exception')->getPreviousException()->getMessage();?></dd>
0042 </dl>
0043 </article>
0044 <?php endif; ?>
0045 
0046 <?php else: ?>
0047 
0048 <article>
0049 <h2>Exception</h2>
0050 <dl>
0051 <dt>Message</dt>
0052 <dd><?=$this->getApplication()->getResource('exception')->getMessage();?></dd>
0053 <dt>Code</dt>
0054 <dd><?=$this->getApplication()->getResource('exception')->getCode();?></dd>
0055 <dt>File</dt>
0056 <dd><?=$this->getApplication()->getResource('exception')->getFile();?></dd>
0057 <dt>Line</dt>
0058 <dd><?=$this->getApplication()->getResource('exception')->getLine();?></dd>
0059 <dt>Trace Log</dt>
0060 <dd><?=nl2br($this->getApplication()->getResource('exception')->getTraceAsString());?></dd>
0061 </dl>
0062 </article>
0063 
0064 <?php if ($this->getApplication()->getResource('exception')->getPreviousException()): ?>
0065 <article>
0066 <h2>Previous Exception</h2>
0067 <dl>
0068 <dt>Message</dt>
0069 <dd><?=$this->getApplication()->getResource('exception')->getPreviousException()->getMessage();?></dd>
0070 <dt>Code</dt>
0071 <dd><?=$this->getApplication()->getResource('exception')->getPreviousException()->getCode();?></dd>
0072 <dt>File</dt>
0073 <dd><?=$this->getApplication()->getResource('exception')->getPreviousException()->getFile();?></dd>
0074 <dt>Line</dt>
0075 <dd><?=$this->getApplication()->getResource('exception')->getPreviousException()->getLine();?></dd>
0076 <dt>Trace Log</dt>
0077 <dd><?=nl2br($this->getApplication()->getResource('exception')->getPreviousException()->getTraceAsString());?></dd>
0078 </dl>
0079 </article>
0080 <?php endif; ?>
0081 
0082 <?php endif; ?>
0083 
0084 </body>
0085 </html>