File: Panel.pm

package info (click to toggle)
libplack-middleware-debug-perl 0.18%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 284 kB
  • sloc: perl: 599; javascript: 133; makefile: 8; sql: 5
file content (9 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
package Plack::Middleware::Debug::Panel;
use strict;
use warnings;
use Plack::Util::Accessor qw(dom_id url title nav_title nav_subtitle content disabled);

sub new { bless {}, shift }
sub disable { $_[0]->disabled(1); return }

1;