NAME

Audit::DBI::TT2 - A Template Toolkit plugin to display audit events recorded by Audit::DBI.

VERSION

Version 2.2.2

SYNOPSIS

In your Perl code:

use Audit::DBI::TT2;
use Template;

my $template = Template->new(
	{
		PLUGINS =>
		{
			audit => 'Audit::DBI::TT2',
		},
	}
) || die $Template::ERROR;

In your TT2 template:

[% USE audit %]
[% FOREACH result IN audit.format_results( results ) %]
	...
[% END %]

Note: a fully operational example of a search interface for Audit::DBI events using this module for the display of the results is available in the examples/ directory of this distribution.

FUNCTIONS

format_results()

Format the following fields for display as HTML:

  • diff

    (accessible as diff_formatted)

  • information

    (accessible as information_formatted)

  • event_time

    (accessible as event_time_formatted)

[% FOREACH result IN audit.format_results( results ) %]
	<div>
		Formatted information: [% result.information_formatted %]<br/>
		Formatted diff: [% result.diff_formatted %]<br/>
		Formatted event time: [% result.event_time_formatted %]
	</div>
[% END %]

html_dumper()

Format a data structure for display as HTML.

my $formatted_data = Audit::DBI::TT2::html_dumper( $data );

AUTHOR

Guillaume Aubert, <aubertg at cpan.org>.

BUGS

Please report any bugs or feature requests through the web interface at https://github.com/guillaumeaubert/Audit-DBI-TT2/issues/new. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Audit::DBI::TT2

You can also look for information at:

ACKNOWLEDGEMENTS

Thanks to ThinkGeek (http://www.thinkgeek.com/) and its corporate overlords at Geeknet (http://www.geek.net/), for footing the bill while I write code for them!

COPYRIGHT & LICENSE

Copyright 2010-2013 Guillaume Aubert.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/