MojoX::Types.3pm

Langue: en

Version: 2010-08-12 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

MojoX::Types - MIME Types

SYNOPSIS

     use MojoX::Types;
 
     # New type list
     my $types = MojoX::Types->new;
 
     # Get MIME type for ".png"
     my $type = $types->type('png');
 
     # Add MIME type for ".foo"
     $types->type(foo => 'mojo/foo');
 
 

DESCRIPTION

MojoX::Types is a container for MIME types.

ATTRIBUTES

MojoX::Types implements the following attributes.

types

     my $map = $types->types;
     $types  = $types->types({png => 'image/png'});
 
 

List of MIME types.

METHODS

MojoX::Types inherits all methods from Mojo::Base and implements the following ones.

type

     my $type = $types->type('png');
     $types   = $types->type(png => 'image/png');
 
 

Get or set MIME type for file extension.

SEE ALSO

Mojolicious, Mojolicious::Guides, <http://mojolicious.org>.