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

NAME

Date::Holidays::IE - Determine Irish holidays - Current EIRE public and bank holiday dates up to 2025

VERSION

0.01

SYNOPSIS

    use Date::Holidays::IE qw( holidays is_holiday);

    # All EIRE holidays for 2023
    my $holidays = holidays( year => 2023 );

    if (is_holiday(
            year => 2023, month => 12, day => 25
           )
    ) {
        print "No work today!";
    }

    # simpler "date" parameter
    if ( is_holiday( date => '2023-12-25' ) ) {
        print "No work today!";
    }

DESCRIPTION

A Date::Holidays compatible library with EIRE national holiday dates available from https://openholidaysapi.org/

EXPORTS

Exports holidays and is_holiday functions

FUNCTIONS

is_holiday

holidays

SEE ALSO

SUPPORT

Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker at https://github.com/hashbangperl/Date-Holidays-IE/issues.

Source Code

This is open source software. The code repository is available for public review and contribution under the terms of the license.

https://github.com/hashbangperl/Date-Holidays-IE

AUTHOR

Aaron Trevena teejay@cpan.org

COPYRIGHT AND LICENSE

Copyright (C) 2023 by Amtivo Group Plc

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.34.0 or, at your option, any later version of Perl 5 you may have available.