Help for this page

Select Code to Download


  1. or download this
        my $items = [{
            name => 'Arbitrary menu name',
    ...
      $callback->({
        items => $items
        });
    
  2. or download this
    opendir DIR, $currentDir or die "cannot open dir $currentDir: $!";
    my @file= readdir DIR;
    ...
      $callback->({
        items => $items
      });