Help for this page

Select Code to Download


  1. or download this
    push @{ $this->{local_vars} }, sub { \@_ }->(my (
       $open_tag, $tagprint, $cur_class,
    ...
    ));
    ...
    if ($open_tag eq 'div' and $cur_class eq 'pager') {...
    
  2. or download this
    my @local_vars;
    push @{ $this->{local_vars} }, \@local_vars;
    ...
    ) = \@local_vars[0..5];
    ...
    if ($$open_tag eq 'div' and $$cur_class eq 'pager') {...