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.204
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 /
Mojolicious /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Guides
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Plugin
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Routes
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Validator
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
resources
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Command.pm
6.44
KB
-rw-rw-rw-
2021-01-17 16:57
Commands.pm
8.42
KB
-rw-rw-rw-
2021-01-17 16:57
Controller.pm
26.75
KB
-rw-rw-rw-
2021-01-17 16:57
Guides.pod
11.2
KB
-rw-rw-rw-
2021-01-17 16:56
Lite.pm
9.92
KB
-rw-rw-rw-
2021-01-17 16:57
Plugin.pm
1.02
KB
-rw-rw-rw-
2021-01-17 16:57
Plugins.pm
4.6
KB
-rw-rw-rw-
2021-01-17 16:57
Renderer.pm
13.61
KB
-rw-rw-rw-
2021-01-17 16:57
Routes.pm
9.41
KB
-rw-rw-rw-
2021-01-17 16:57
Sessions.pm
5.43
KB
-rw-rw-rw-
2021-01-17 16:57
Static.pm
8.3
KB
-rw-rw-rw-
2021-01-17 16:57
Types.pm
4.77
KB
-rw-rw-rw-
2021-01-17 16:57
Validator.pm
4.75
KB
-rw-rw-rw-
2021-01-17 16:57
Save
Rename
package Mojolicious::Plugin; use Mojo::Base -base; use Carp qw(croak); sub register { croak 'Method "register" not implemented by subclass' } 1; =encoding utf8 =head1 NAME Mojolicious::Plugin - Plugin base class =head1 SYNOPSIS # CamelCase plugin name package Mojolicious::Plugin::MyPlugin; use Mojo::Base 'Mojolicious::Plugin', -signatures; sub register ($self, $app, $conf) { # Magic here! :) } =head1 DESCRIPTION L<Mojolicious::Plugin> is an abstract base class for L<Mojolicious> plugins. See L<Mojolicious::Plugins/"PLUGINS"> for a list of plugins that are available by default. =head1 METHODS L<Mojolicious::Plugin> inherits all methods from L<Mojo::Base> and implements the following new ones. =head2 register $plugin->register(Mojolicious->new); $plugin->register(Mojolicious->new, {foo => 'bar'}); This method will be called by L<Mojolicious::Plugins> at startup time. Meant to be overloaded in a subclass. =head1 SEE ALSO L<Mojolicious>, L<Mojolicious::Guides>, L<https://mojolicious.org>. =cut