in reply to Re^5: How to conditionally execute a subroutine defined as hash value
in thread How to conditionally execute a subroutine defined as hash value
Now I need to find out how I can redirect the Template::Toolkit output to the file $test.'.html' instead of screen...my $test = 'show_stop_user'; my $calls = { show_home => sub { show_home($config) }, show_stop_user => sub { show_stop_user($config, {user=>'dummy',type=>'Users'}) }, admin_users_new_1 => sub { show_admin_user($config, { action=>'add', messages=>{ success=>['line1','line2'] }})}, admin_users_new_2 => sub { show_admin_user($config, { action=>'add' }) }, }; $calls->{$test}();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: How to conditionally execute a subroutine defined as hash value
by AnomalousMonk (Archbishop) on Apr 02, 2014 at 17:52 UTC |