Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
DBIx /
Class /
Admin /
Delete
Unzip
Name
Size
Permission
Date
Action
Descriptive.pm
222
B
-rw-rw-rw-
2016-08-24 09:05
Types.pm
994
B
-rw-rw-rw-
2016-08-24 09:05
Usage.pm
1.77
KB
-rw-rw-rw-
2018-04-30 13:43
Save
Rename
package # hide from PAUSE DBIx::Class::Admin::Usage; use warnings; use strict; use base 'Getopt::Long::Descriptive::Usage'; use base 'Class::Accessor::Grouped'; __PACKAGE__->mk_group_accessors('simple', 'synopsis', 'short_description'); sub prog_name { Getopt::Long::Descriptive::prog_name(); } sub set_simple { my ($self,$field, $value) = @_; my $prog_name = prog_name(); $value =~ s/%c/$prog_name/g; $self->next::method($field, $value); } # This returns the usage formatted as a pod document sub pod { my ($self) = @_; return join qq{\n}, $self->pod_leader_text, $self->pod_option_text, $self->pod_authorlic_text; } sub pod_leader_text { my ($self) = @_; return qq{=head1 NAME\n\n}.prog_name()." - ".$self->short_description().qq{\n\n}. qq{=head1 SYNOPSIS\n\n}.$self->leader_text().qq{\n}.$self->synopsis().qq{\n\n}; } sub pod_authorlic_text { return join ("\n\n", '=head1 AUTHORS', 'See L<DBIx::Class/AUTHORS>', '=head1 LICENSE', 'You may distribute this code under the same terms as Perl itself', '=cut', ); } sub pod_option_text { my ($self) = @_; my @options = @{ $self->{options} || [] }; my $string = q{}; return $string unless @options; $string .= "=head1 OPTIONS\n\n=over\n\n"; foreach my $opt (@options) { my $spec = $opt->{spec}; my $desc = $opt->{desc}; next if ($desc eq 'hidden'); if ($desc eq 'spacer') { $string .= "=back\n\n=head2 $spec\n\n=cut\n\n=over\n\n"; next; } $spec = Getopt::Long::Descriptive->_strip_assignment($spec); $string .= "=item " . join " or ", map { length > 1 ? "B<--$_>" : "B<-$_>" } split /\|/, $spec; $string .= "\n\n$desc\n\n=cut\n\n"; } $string .= "=back\n\n"; return $string; } 1;