[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
perl5
/
vendor_perl
/
File
/
HomeDir
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Darwin
SET
[ DEL ]
📄 Darwin.pm
3,262 B
SET
[ EDIT ]
|
[ DEL ]
📄 Driver.pm
1,123 B
SET
[ EDIT ]
|
[ DEL ]
📄 FreeDesktop.pm
3,636 B
SET
[ EDIT ]
|
[ DEL ]
📄 MacOS9.pm
3,005 B
SET
[ EDIT ]
|
[ DEL ]
📄 Test.pm
3,012 B
SET
[ EDIT ]
|
[ DEL ]
📄 Unix.pm
3,414 B
SET
[ EDIT ]
|
[ DEL ]
📄 Windows.pm
6,310 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Driver.pm
package File::HomeDir::Driver; # Abstract base class that provides no functionality, # but confirms the class is a File::HomeDir driver class. use 5.00503; use strict; use Carp (); use vars qw{$VERSION}; BEGIN { $VERSION = '1.002'; } sub my_home { Carp::croak("$_[0] does not implement compulsory method $_[1]"); } 1; =pod =head1 NAME File::HomeDir::Driver - Base class for all File::HomeDir drivers =head1 DESCRIPTION This module is the base class for all L<File::HomeDir> drivers, and must be inherited from to identify a class as a driver. It is primarily provided as a convenience for this specific identification purpose, as L<File::HomeDir> supports the specification of custom drivers and an C<-E<gt>isa> check is used during the loading of the driver. =head1 AUTHOR Adam Kennedy E<lt>adamk@cpan.orgE<gt> =head1 SEE ALSO L<File::HomeDir> =head1 COPYRIGHT Copyright 2009 - 2011 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. =cut