File: Panel.pm

package info (click to toggle)
libplack-middleware-debug-perl 0.16%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 308 kB
  • ctags: 51
  • sloc: perl: 594; sh: 54; makefile: 6; 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;