Help for this page

Select Code to Download


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