• Main Page
  • Related Pages
  • Namespaces
  • Data Structures
  • Files
  • Examples
  • File List

E:/E/GEAMP/www/openbiz/openbiz/others/Zend/Log/Filter/Suppress.php

00001 <?php
00024 require_once 'Zend/Log/Filter/Interface.php';
00025 
00034 class Zend_Log_Filter_Suppress implements Zend_Log_Filter_Interface
00035 {
00039     protected $_accept = true;
00040 
00050     public function suppress($suppress)
00051     {
00052         $this->_accept = (! $suppress);
00053     }
00054 
00061     public function accept($event)
00062     {
00063         return $this->_accept;
00064     }
00065 
00066 }

Generated on Thu Apr 19 2012 17:01:17 for openbiz by  doxygen 1.7.2