NAME

Date::Holidays::AU - Determine Australian Public Holidays

VERSION

Version 0.38

SYNOPSIS

use Date::Holidays::AU qw( is_holiday );
my ($year, $month, $day) = (localtime)[ 5, 4, 3 ];
$year  += 1900;
$month += 1;
my $state = 'VIC';
print "Excellent\n" if is_holiday( $year, $month, $day, $state );

DESCRIPTION

This module makes an attempt at describing Australian holidays using the interface defined Date::Holidays::Abstract, which defines two methods, is_holiday and holidays.

SUBROUTINES/METHODS

DEPENDENCIES

Uses Date::Easter for easter calculations. Makes use of the Time::Local modules from the standard Perl distribution.

CONFIGURATION AND ENVIRONMENT

Date::Holidays::AU requires no configuration files or environment variables.

INCOMPATIBILITIES

None reported

AUTHOR

David Dick ddick@cpan.org

BUGS AND LIMITATIONS

Support for WA's Queen's Birthday holiday only consists of hard-coded values. Likewise for Grand Final Eve in Victoria.

LICENSE AND COPYRIGHT

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Date::Holidays::Abstract, Date::Holiday::DE, Date::Holiday::UK