Source for file Message.php
Documentation is available at Message.php
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Message.php 20982 2010-02-08 15:51:36Z matthew $
* @see Microsoft_AutoLoader
require_once dirname(__FILE__ ) . '/../../AutoLoader.php';
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Message.php 20982 2010-02-08 15:51:36Z matthew $
* Filter out any log messages not matching $regexp.
* @param string $regexp Regular expression to test the log message
* @throws Microsoft_Log_Exception
require_once 'Microsoft/Log/Exception.php';
* Create a new instance of Microsoft_Log_Filter_Message
* @return Microsoft_Log_Filter_Message
* @throws Microsoft_Log_Exception
static public function factory($config)
$config = self::_parseConfig($config);
* Returns TRUE to accept the message, FALSE to block it.
* @param array $event event data
* @return boolean accepted?
public function accept($event)
|