Gumbo_Interface_Log
Log Interface
This is responsible for holding Log Message created by the system. A Log Message Type is defined by the Log Message, which indicates the type of Log Message being created. The implementing class will have the option to restrict certain Message Types from being written. This creates an easy way to ignore certain types of Messages.
Author(s): |
Michael Luster <mluster79@yahoo.com> |
License: | New BSD License |
Copyright: | Copyright (c) 2007, iBayou, Michael Luster |
Link: | http://sourceforge.net/projects/phpgumbo |
Version: | 0.0.1 |
Interface Methods
public void add ( $mess )
[line 55]
Adds a log message to the list
Parameter(s):
- (Gumbo_Interface_Log_Message) $mess
- precondition:
isOn()
[ Top ]public void addType ( string $type ) [line 78]Adds an active Log Message Type
Parameter(s):
- (string) $type
[ Top ]public void delType ( string $type ) [line 84]Removes an active Log Message Type
Parameter(s):
- (string) $type
[ Top ]public bool ignoreTypes ( [bool $ignore] ) [line 124]Returns if to ignore Types (or set to ignore Types)
Parameter(s):
- (bool) $ignore
[ Top ]public bool isType ( string $type ) [line 117]Returns if the message type is registered
Parameter(s):
- (string) $type
[ Top ]!isOn()
[ Top ]isOn()
[ Top ]isOn()
[ Top ]