Login   Register  
PHP Classes
elePHPant
Icontem

File: application/views/scripts/index/index.phtml

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Silvan von Felten  >  SVF_Log  >  application/views/scripts/index/index.phtml  >  Download  
File: application/views/scripts/index/index.phtml
Role: Application script
Content type: text/plain
Description: Index html
Class: SVF_Log
Logging class and plug-ins for Zend framework
Author: By
Last change:
Date: 2008-12-03 16:05
Size: 1,085 bytes
 

Contents

Class file image Download
<b>Test the logger</b><br />
<br />
The hard logger plugin generates output to firebug, php, access_log and error_log file.<br />
The file logger plugin generates output to messages_log file.<br />
The logger files are gennerated in directory /application/log.<br />
To use firebug please read <a href="http://framework.zend.com/manual/en/zend.log.writers.html#zend.log.writers.firebug" target="_blank">requirements</a>.<br />
Take a look at the logger front controller plugins<br />
located in the directory /library/SVF/Controller/plugin/log.<br />
<br />
<br />
<a href="?logger=Hard">Hard</a> <?= 
(isset($_GET['logger']) && $_GET['logger'] === 'Hard' || empty($_GET['logger'])) ? '<-' ''?><br />
<a href="?logger=File">File</a> <?= 
(isset($_GET['logger']) && $_GET['logger'] === 'File') ? '<-' ''?><br />
<a href="?logger=Firebug">Firebug</a> <?= 
(isset($_GET['logger']) && $_GET['logger'] === 'Firebug') ? '<-' ''?><br />
<a href="?logger=Php">Php</a> <?= 
(isset($_GET['logger']) && $_GET['logger'] === 'Php') ? '<-' ''?><br />
<br />
<br />