PHP Classes

File: core/Error/templates/environment.phtml

Recommend this page to a friend!
  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: 12 years ago
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; ?>