Help for this page
SWITCH: for ($Request->item("View")->item()) { if ($_ eq 'HowTo') { $str .= mHowTo(); last SWITCH; if ($_ eq 'Tutorials') { $str .= mTutorials(); last SWITCH; ... }
my %actions = ( HowTo => \&mHowTo, ... return exists($actions{$view}) ? $actions{$view}->() : mSearch(); }