Login   Register  
PHP Classes
elePHPant
Icontem

File: core/Error/templates/environment.phtml

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Italo Lelis de Vietro  >  Easy Framework  >  core/Error/templates/environment.phtml  >  Download  
File: core/Error/templates/environment.phtml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Easy Framework
Full stack Web application framework with MVC
Author: By
Last change:
Date: 2012-03-03 05:59
Size: 1,159 bytes
 

Contents

Class file image Download
<? if ($debug): ?>
    <table>
        <tbody>
            <tr>
                <th>EasyFramework version</th>
                <td><?= App::getVersion() ?></td>
            </tr>
            <tr>
                <th>Environment</th>
                <td><?= APPLICATION_ENV ?></td>
            </tr>
            <tr>
                <th>PHP Version</th>
                <td><?= phpversion() ?></td>
            </tr>
            <tr>
                <th>Server</th>
                <td><?= function_exists("apache_get_version") ? apache_get_version() : "Não verificado." ?></td>
            </tr>
            <tr>
                <th>Root path</th>
                <td><?= ROOT ?></td>
            </tr>
            <tr>
                <th>App Encoding</th>
                <td><?= Config::read('App.encoding') ?></td>
            </tr>
            <tr>
                <th>Session Engine</th>
                <td><?= Config::read('Session.defaults') ?></td>
            </tr>
            <tr>
                <th>View Engine</th>
                <td><?= Config::read('View.engine.engine') ?></td>
            </tr>
        </tbody>
    </table>
<? endif; ?>