Help for this page

Select Code to Download


  1. or download this
    sub navbar_callback {
        my ($self, $ht_params, $tmpl_params, $tmpl_file) = @_;
    ...
            # $tmpl_params->{navbar} = $self->navbar_template;
        }
    }
    
  2. or download this
    sub setup {
        my $self = shift;
        $self->add_callback( 'load_tmpl' => 'navbar_callback' );
    }
    
  3. or download this
    sub cgiapp_postrun {
        my ( $self, $outputref ) = @_;
    ...
            }
        }
    }