📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: superclass.pm
use 5.008001; use strict; use warnings; package superclass; # ABSTRACT: Like parent, but with version checks our $VERSION = '0.003'; # VERSION use version 0.9901; # sane UNIVERSAL::VERSION, more or less use Module::Load 0.24 (); # apostrophe support # module name regular expression my $mod_re = qr/^[A-Z_a-z][0-9A-Z_a-z]*(?:(?:::|')[0-9A-Z_a-z]+)*$/; sub import { my $class = shift; my $inheritor = caller(0); my $no_require; if ( @_ and $_[0] eq '-norequire' ) { shift @_; $no_require++; } while (@_) { my $module = shift @_; my $version = ( @_ && $_[0] !~ $mod_re ) ? shift(@_) : 0; if ( $module eq $inheritor ) { warn "Class '$inheritor' tried to inherit from itself\n"; } Module::Load::load($module) unless $no_require; # dies if not found $module->VERSION($version) if $version; # don't check '0' { no strict 'refs'; push @{"$inheritor\::ISA"}, $module; }; } } 1; =pod =encoding UTF-8 =head1 NAME superclass - Like parent, but with version checks =head1 VERSION version 0.003 =head1 SYNOPSIS package Baz; use superclass qw(Foo Bar), 'Baz' => 1.23; =head1 DESCRIPTION Allows you to both load one or more modules, while setting up inheritance from those modules at the same time. If a module in the import list is followed by something that doesn't look like a legal module name, the C<VERSION> method will be called with it as an argument; The synopsis example is mostly similar in effect to package Baz; BEGIN { require Foo; require Bar; require Baz; Baz->VERSION(1.23) push @ISA, qw(Foo Bar Baz); } Dotted-decimal versions should be given as a string, not a raw v-string, and must include at least one decimal point. use superclass 'Bar' => v65.65.65; # BAD: loads AAA.pm use superclass 'Bar' => 'v6'; # BAD: loads v6.pm use superclass 'Foo' => 'v0.10.0'; # OK If the first import argument is C<-norequire>, no files will be loaded (but any versions given will still be checked). This is helpful for the case where a package lives within the current file or a differently named file: package MyHash; use Tie::Hash; use superclass -norequire, 'Tie::StdHash'; =for Pod::Coverage method_names_here =head1 DIAGNOSTICS =over 4 =item Class 'Foo' tried to inherit from itself Attempting to inherit from yourself generates a warning. package Foo; use superclass 'Foo'; =back =head1 HISTORY This module was forked from L<parent> to add version checks. The L<parent> module was forked from L<base> to remove the cruft that had accumulated in it. Authors of or contributors to predecessor modules include Rafaël Garcia-Suarez, Bart Lateur, Max Maischein, Anno Siegel, and Michael Schwern =for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan =head1 SUPPORT =head2 Bugs / Feature Requests Please report any bugs or feature requests through the issue tracker at L<https://github.com/dagolden/superclass/issues>. You will be notified automatically of any progress on your issue. =head2 Source Code This is open source software. The code repository is available for public review and contribution under the terms of the license. L<https://github.com/dagolden/superclass> git clone https://github.com/dagolden/superclass.git =head1 AUTHOR David Golden <dagolden@cpan.org> =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2013 by David Golden. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut __END__ # vim: ts=4 sts=4 sw=4 et:
Save