Help for this page

Select Code to Download


  1. or download this
    use constant PUBLIC => 0, PRIVATE => 1;
    %query = (
    ...
    
    my @public_actions =
      grep $query{$_}->{visibility} == PUBLIC, keys %query;
    
  2. or download this
    sub register_action {
      my( $action, $subname ) = @_;
    ...
      $query{ $action } = { visibility => ($subname =~ /^_/),
                            code => \&{$subname} };
    }