The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Catalyst::Plugin::DateTime - DateTime plugin for Catalyst.

SYNOPSIS

    # In your application class 
    use Catalyst qw/DateTime/;


    # Use DateTime objects within your Catalyst app:
    my $dt = $c->datetime(); # will return a DateTime object with local date and time
    my $dt = $c->datetime('year' => '2005', month => '01');
 
    $c->datetime->mdy(); # returns current date in mdy format (i.e. 01/01/2006)

METHODS

datetime

Returns a DateTime object. If params are argued they will be passed to the DateTime->new() method. Exceptions thrown by DateTime will be caught by Catalyst::Exception.

If the argument list is empty, a DateTime object with the local date and time obtained via DateTime->now() will be returned.

DESCRIPTION

This module's intention is to make the wonders of DateTime easily accesible within a Catalyst application via the Catalyst::Plugin interface.

It adds a method named datetime to the Catalyst namespace.

AUTHOR

James Kiser james.kiser@gmail.com

SEE ALSO

Catalyst, DateTime

COPYRIGHT & LICNESE

    Copyright (c) 2006 the aforementioned author(s). All rights
    reserved. This program is free software; you can redistribute
    it and/or modify it under the same terms as Perl itself.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 11:

=pod directives shouldn't be over one line long! Ignoring all 2 lines of content