<<

NAME

Koha::Installer::Output - Module to provide colored output for Koha installer

SYNOPSIS

  use Koha::Installer::Output qw(say_warning say_failure say_success say_info);

  # Output messages with appropriate colors
  say_warning($fh, "This is a warning message");
  say_failure($fh, "This is a failure message");
  say_success($fh, "This is a success message");
  say_info($fh, "This is an info message");

DESCRIPTION

This module provides methods to output messages with appropriate colors for different types of messages: warnings, failures, successes, and informational messages.

EXPORTS

The following functions can be exported upon request:

AUTHORS

Martin Renvoize <martin.renvoize@ptfs-europe.com>

<<