The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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.