Koha::Installer::Output - Module to provide colored output for Koha installer
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");
This module provides methods to output messages with appropriate colors for different types of messages: warnings, failures, successes, and informational messages.
The following functions can be exported upon request:
Output a warning message in yellow.
Output a failure message in red.
Output a success message in green.
Output an informational message in blue.
Martin Renvoize <martin.renvoize@ptfs-europe.com>