Catalyst::Helper::View::GD::Barcode::QRcode - Helper for GD::Barcode::QRcode Views


Catalyst-View-GD-Barcode-QRcode documentation Contained in the Catalyst-View-GD-Barcode-QRcode distribution.

Index


Code Index:

NAME

Top

Catalyst::Helper::View::GD::Barcode::QRcode - Helper for GD::Barcode::QRcode Views

SYNOPSIS

Top

    script/create.pl view MyQRcode GD::Barcode::QRcode




DESCRIPTION

Top

Helper for GD::Barcode::QRcode Views.

METHODS

mk_compclass

SEE ALSO

Top

Catalyst, Catalyst::View::GD::Barcode::QRcode, GD::Barcode::QRcode.

AUTHOR

Top

Hideo Kimura <<hide@hide-k.net>>

LICENSE

Top

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.

NAME

Top

[% class %] - Catalyst GD::Barcode::QRcode View

SYNOPSIS

Top

See [% app %]

DESCRIPTION

Top

Catalyst GD::Barcode::QRcode View.

AUTHOR

Top

[% author %]

LICENSE

Top

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.


Catalyst-View-GD-Barcode-QRcode documentation Contained in the Catalyst-View-GD-Barcode-QRcode distribution.
package Catalyst::Helper::View::GD::Barcode::QRcode;

use strict;

sub mk_compclass {
    my ( $self, $helper ) = @_;
    my $file = $helper->{file};
    $helper->render_file( 'compclass', $file );
}

1;

__DATA__

__compclass__
package [% class %];

use strict;
use base 'Catalyst::View::GD::Barcode::QRcode';

1;