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.140
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 /
Relationship /
Delete
Unzip
Name
Size
Permission
Date
Action
Accessor.pm
3.66
KB
-rw-rw-rw-
2020-03-29 22:33
Base.pm
29.87
KB
-rw-rw-rw-
2020-03-29 22:33
BelongsTo.pm
2.54
KB
-rw-rw-rw-
2020-03-29 22:33
CascadeActions.pm
2.02
KB
-rw-rw-rw-
2020-03-29 22:33
HasMany.pm
1.44
KB
-rw-rw-rw-
2020-03-29 22:33
HasOne.pm
3.23
KB
-rw-rw-rw-
2020-03-29 22:33
Helpers.pm
270
B
-rw-rw-rw-
2016-08-22 12:55
ManyToMany.pm
4.77
KB
-rw-rw-rw-
2020-03-29 22:33
ProxyMethods.pm
1.36
KB
-rw-rw-rw-
2020-03-29 22:33
Save
Rename
package # hide from PAUSE DBIx::Class::Relationship::ProxyMethods; use strict; use warnings; use base 'DBIx::Class'; use DBIx::Class::_Util 'quote_sub'; use namespace::clean; our %_pod_inherit_config = ( class_map => { 'DBIx::Class::Relationship::ProxyMethods' => 'DBIx::Class::Relationship' } ); sub register_relationship { my ($class, $rel, $info) = @_; if (my $proxy_args = $info->{attrs}{proxy}) { $class->proxy_to_related($rel, $proxy_args); } $class->next::method($rel, $info); } sub proxy_to_related { my ($class, $rel, $proxy_args) = @_; my %proxy_map = $class->_build_proxy_map_from($proxy_args); quote_sub "${class}::$_", sprintf( <<'EOC', $rel, $proxy_map{$_} ) my $self = shift; my $relobj = $self->%1$s; if (@_ && !defined $relobj) { $relobj = $self->create_related( %1$s => { %2$s => $_[0] } ); @_ = (); } $relobj ? $relobj->%2$s(@_) : undef; EOC for keys %proxy_map } sub _build_proxy_map_from { my ( $class, $proxy_arg ) = @_; my $ref = ref $proxy_arg; if ($ref eq 'HASH') { return %$proxy_arg; } elsif ($ref eq 'ARRAY') { return map { (ref $_ eq 'HASH') ? (%$_) : ($_ => $_) } @$proxy_arg; } elsif ($ref) { $class->throw_exception("Unable to process the 'proxy' argument $proxy_arg"); } else { return ( $proxy_arg => $proxy_arg ); } } 1;