Help for this page

Select Code to Download


  1. or download this
    my %Menu = {
      app1 => {
    ...
             MenuItems => [ @MenuItems ]
      },
    };
    
  2. or download this
    foreach my $app (@sorted_applications) {
          $app = lc $app;
          push @{ $Menu{$app}{MenuItems} }, $app;
    }