Zend Framework/Zend Log/Filtros
Log Filtros
[editar]En este ejemplo la parte importante es #/html/index.php aquí tenemos que prestar especial atención al fragmento
//Aqui indicamos que solo se mostraran los mensajes que sean iguales o superiores a criticos $filter = new Zend_Log_Filter_Priority(Zend_Log::CRIT); $logger->addFilter($filter);
Aquí definimos el filtro para restringuir los mensajes.
Podemos ver el resultado del logue en #/log/zfw.log.
A todos los invito a suscribirse al grupo Zend Framework Hispano ahí colocaremos los archivos de ejemplos para que puedan ser descargados. Podes bajar el ejemplo aquí zft_log_filtros.zip
Estructura de archivos
[editar]La estructura de los archivos será al siguiente
/.htaccess
[editar]Breve descripción del archivo
RewriteEngine on RewriteRule !\.(js|ico|gif|jpg|png|css)$ html
/application/controllers/IndexController.php
[editar]Breve descripción del archivo
<?php /** * Zend Framework Tutorial * * Este tutorial tiene un enfoque pragmatico, lo cual indica una amplia cantidad * de ejemplos. Este material forma parte del Wikibook en español para ZF. * * @author Mario Garcia * @copyright Copyright (c) 2006-2008 Oh!Studio Media Solutions (http://www.ohstudio.com.ar) * @license http://www.php.net/license/3_0.txt */ class IndexController extends Zend_Controller_Action { function init() { $response = $this->getResponse(); $response->insert('sidebarLeft', $this->view->render('sidebarLeft.phtml')); $response->insert('sidebarRight', $this->view->render('sidebarRight.phtml')); $response->insert('header', $this->view->render('header.phtml')); $response->insert('footer', $this->view->render('footer.phtml')); } public function indexAction() { } }
/application/views/layouts/layout.phtml
[editar]Breve descripción del archivo
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>ZFTutorial :: Enfoque pragmatico</title> <link rel="stylesheet" type="text/css" href="<?php echo $this->baseUrl();?>/css/grid.css" /> </head> <body> <div id="bcss-header"> <!-- bcss-header --> <?php echo $this->layout()->header ?> <!-- /bcss-header --> </div> <div id="bcss-sidebar-1"> <!-- bcss-sidebar-1 --> <?php echo $this->layout()->sidebarLeft ?> <!-- /bcss-sidebar-1 --> </div> <div id="bcss-content"> <!-- bcss-content --> <?php echo $this->layout()->content ?> <!-- /bcss-content --> </div> <div id="bcss-sidebar-2"> <!-- bcss-sidebar-2 --> <?php echo $this->layout()->sidebarRight ?> <!-- /bcss-sidebar-2 --> </div> <div id="bcss-footer"> <!-- bcss-footer --> <?php echo $this->layout()->footer ?> <!-- /bcss-footer --> </div> </body> </html>
/application/views/helpers/BaseUrl.php
[editar]Breve descripción del archivo
<?php /** * Zend Framework Tutorial * * Este tutorial tiene un enfoque pragmatico, lo cual indica una amplia cantidad * de ejemplos. Este material forma parte del Wikibook en español para ZF. * * @author Mario Garcia * @copyright Copyright (c) 2006-2008 Oh!Studio Media Solutions (http://www.ohstudio.com.ar) * @license http://www.php.net/license/3_0.txt */ class Zend_View_Helper_BaseUrl { function baseUrl() { $fc = Zend_Controller_Front::getInstance(); $request = $fc->getRequest(); return $request->getBaseUrl(); } }
/application/views/scripts/sidebarLeft.phtml
[editar]Breve descripción del archivo
<ul> <li><a href="<?php echo $this->baseUrl();?>/index/index">home</a></li> <li><a href="http://www.google.com">google</a></li> </ul>
/application/views/scripts/header.phtml
[editar]Breve descripción del archivo
<h1>Header</h1>
/application/views/scripts/footer.phtml
[editar]Breve descripción del archivo
<h1>Footer</h1>
/application/views/scripts/sidebarRight.phtml
[editar]Breve descripción del archivo
<h1>Sidebar Right</h1>
/application/views/scripts/index/index.phtml
[editar]Breve descripción del archivo
<h1>Ejemplo de Filtros</h1> Se filtran los mensajes de log.
/log/zfw.log
[editar]Breve descripción del archivo
2008-07-05T11:59:23-03:00 EMERG (0): mensaje tipo [emerg] 2008-07-05T11:59:23-03:00 ALERT (1): mensaje tipo [alert] 2008-07-05T11:59:23-03:00 CRIT (2): mensaje tipo [crit]
/html/index.php
[editar]Breve descripción del archivo
<?php /** * Zend Framework Tutorial * * Este tutorial tiene un enfoque pragmatico, lo cual indica una amplia cantidad * de ejemplos. Este material forma parte del Wikibook en español para ZF. * * @author Mario Garcia * @copyright Copyright (c) 2006-2008 Oh!Studio Media Solutions (http://www.ohstudio.com.ar) * @license http://www.php.net/license/3_0.txt */ /*poner comentario*/ define('ROOT_DIR', dirname(dirname(__FILE__))); define('ROOT_DIR_LOG', ROOT_DIR.DIRECTORY_SEPARATOR.'log'); // Setup path to the Zend Framework files set_include_path('.' . PATH_SEPARATOR . ROOT_DIR.'/lib/' . PATH_SEPARATOR . get_include_path() ); require_once 'Zend/Loader.php'; Zend_Loader::registerAutoload(); //Inicializamos el log $logger = new Zend_Log(); //Aqui ponemos las salida por archivo $writer = new Zend_Log_Writer_Stream(ROOT_DIR_LOG.DIRECTORY_SEPARATOR.'/zfw.log'); $logger->addWriter($writer); //Aqui indicamos que solo se mostraran los mensajes que sean iguales o superiores a criticos $filter = new Zend_Log_Filter_Priority(Zend_Log::CRIT); $logger->addFilter($filter); //Escribimos un simple mensaje $logger->emerg('mensaje tipo [emerg]'); $logger->alert('mensaje tipo [alert]'); $logger->crit('mensaje tipo [crit]'); $logger->err('mensaje tipo [err]'); $logger->warn('mensaje tipo [warn]'); $logger->notice('mensaje tipo [notice]'); $logger->info('mensaje tipo [info]'); $logger->debug('mensaje tipo [debug]'); // Inicializar el MVC Zend_Layout::startMvc(array('layoutPath' => ROOT_DIR.'/application/views/layouts')); // Run! $frontController = Zend_Controller_Front::getInstance(); $frontController->addControllerDirectory(ROOT_DIR.'/application/controllers'); $frontController->throwExceptions(true); try { $frontController->dispatch(); } catch(Exception $e) { echo nl2br($e->__toString()); }
/html/.htaccess
[editar]Breve descripción del archivo
RewriteEngine on RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
/html/css/grid.css
[editar]Breve descripción del archivo
/* Site Grid by BoxedCSS.com */ #bcss-header { width:100%; background:#FFFFE5; /* you can delete this, it's just a visual aid */ clear:both; } #bcss-sidebar-1 { width:27%; float:left; background:#FFE5FF; /* you can delete this, it's just a visual aid */ } #bcss-sidebar-2 { width:13%; float:left; background:#F7FBEA; /* you can delete this, it's just a visual aid */ } #bcss-content { width:60%; min-height: 400px; float:left; background:#E5F2FF; /* you can delete this, it's just a visual aid */ } #bcss-footer { width:100%; clear:both; background:#FFF2E5; /* you can delete this, it's just a visual aid */ }