PHP Logging Class 1.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News PHP Logging Class 1.2 (Default branch)
# 1  
Old 03-24-2008
PHP Logging Class 1.2 (Default branch)

ImagePHP Logging Class can be used to log activity to adatabase. It can add activity entries to a logdatabase table. It logs the activity prioritylevel and class, the remote user identifier (iflogged), and its computer IP address. Optionally,it can send email about the activities beinglogged to a given email address. It can alsodisplay log entries as an HTML table.License: GNU General Public License (GPL)Changes:
A few enhancements were made in the configurationscript, so now it is easier to configure andinstall. The documentation was improved, includinga readme.txt file and online tutorials.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
MixinFactory::NEXT(3pm) 				User Contributed Perl Documentation				   MixinFactory::NEXT(3pm)

NAME
Class::MixinFactory::NEXT - Superclass method redispatch for mixins SYNOPSIS
use Class::MixinFactory::NEXT; package My::BaseClass; sub foo { return "Foo Bar" } package My::Logging; sub foo { warn "Calling foo"; (shift)->NEXT('foo', @_) } package My::MixedClass; @ISA = ( 'My::Logging', 'My::BaseClass', 'Class::MixinFactory::NEXT'; ); package main; print My::MixedClass->foo(); DESCRIPTION
Enhanced superclass method dispatch for use inside mixin class methods. Allows mixin classes to redispatch to other classes in the inheritance tree without themselves inheriting from anything. Public Methods This package defines one method, named NEXT. $callee->NEXT( $method, @args ); Searches the inheritance tree of the callee until it finds the package from which NEXT is being called, and then continues searching until the next class which can perform the named method. Unlike SUPER, this method will backtrack down the inheritance tree to find implementations later in the search path even if they are on a separate branch. SEE ALSO
This class is automatically included by Class::MixinFactory. This is similar to the functionality provided by NEXT::ACTUAL, but without using AUTOLOAD; for a more generalized approach to this issue see NEXT. For distribution, installation, support, copyright and license information, see Class::MixinFactory::ReadMe. perl v5.10.1 2009-12-10 MixinFactory::NEXT(3pm)