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::HasMany; use strict; use warnings; use Try::Tiny; use namespace::clean; our %_pod_inherit_config = ( class_map => { 'DBIx::Class::Relationship::HasMany' => 'DBIx::Class::Relationship' } ); sub has_many { my ($class, $rel, $f_class, $cond, $attrs) = @_; unless (ref $cond) { my $pri = $class->result_source_instance->_single_pri_col_or_die; my ($f_key,$guess); if (defined $cond && length $cond) { $f_key = $cond; $guess = "caller specified foreign key '$f_key'"; } else { $class =~ /([^\:]+)$/; # match is safe - $class can't be '' $f_key = lc $1; # go ahead and guess; best we can do $guess = "using our class name '$class' as foreign key source"; } # FIXME - this check needs to be moved to schema-composition time... # # only perform checks if the far side appears already loaded # if (my $f_rsrc = try { $f_class->result_source_instance } ) { # $class->throw_exception( # "No such column '$f_key' on foreign class ${f_class} ($guess)" # ) if !$f_rsrc->has_column($f_key); # } $cond = { "foreign.${f_key}" => "self.${pri}" }; } my $default_cascade = ref $cond eq 'CODE' ? 0 : 1; $class->add_relationship($rel, $f_class, $cond, { accessor => 'multi', join_type => 'LEFT', cascade_delete => $default_cascade, cascade_copy => $default_cascade, is_depends_on => 0, %{$attrs||{}} }); } 1;