Server IP : 23.254.227.96 / Your IP : 216.73.216.46 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/perl5/vendor_perl/MIME/Field/ |
Upload File : |
package MIME::Field::ContDisp; =head1 NAME MIME::Field::ContDisp - a "Content-disposition" field =head1 DESCRIPTION A subclass of Mail::Field. I<Don't use this class directly... its name may change in the future!> Instead, ask Mail::Field for new instances based on the field name! =head1 SYNOPSIS use Mail::Field; use MIME::Head; # Create an instance from some text: $field = Mail::Field->new('Content-disposition', $text); # Inline or attachment? $type = $field->type; # Recommended filename? $filename = $field->filename; =head1 SEE ALSO L<MIME::Field::ParamVal>, L<Mail::Field> =head1 AUTHOR Eryq (F<eryq@zeegee.com>), ZeeGee Software Inc (F<http://www.zeegee.com>). Dianne Skoll (dfs@roaringpenguin.com) http://www.roaringpenguin.com =cut require 5.001; use strict; use MIME::Field::ParamVal; use vars qw($VERSION @ISA); @ISA = qw(MIME::Field::ParamVal); # The package version, both in 1.23 style *and* usable by MakeMaker: $VERSION = "5.509"; # Install it: bless([])->register('Content-disposition'); #------------------------------ sub filename { shift->paramstr('filename', @_); } sub type { shift->paramstr('_', @_); } #------------------------------ 1;