Template.pm 305 B

12345678910111213141516
  1. package Cpanel::Template;
  2. use strict;
  3. use warnings;
  4. use FindBin;
  5. sub process_template {
  6. my ( $svc, $args_hr ) = @_;
  7. my $content = "# [$svc] This is a test of Troglodyne::CGI. Please Ignore";
  8. if($args_hr->{'print'}) {
  9. print STDOUT $content;
  10. }
  11. return ( 1, \$content );
  12. };
  13. 1;