| Template-Plugin-JapanesePrefectures documentation | Contained in the Template-Plugin-JapanesePrefectures distribution. |
Template::Plugin::JapanesePrefectures - easliy use Geography::JapanesePrefectures.
This documentation refers to Template::Plugin::JapanesePrefectures version 0.01
In your template:
[% USE pref = JapanesePrefectures('euc-jp') %]
[% FOR prefecture IN pref.prefectures %]
[% prefecture.name %]
[% END %]
create Geography::JapanesePrefectures::Walker's object
Atsushi Kobayashi, <nekokak at gmail.com>
Please report any bugs or feature requests to
bug-template-plugin-japaneseprefectures at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Template-Plugin-JapanesePrefectures.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Template::Plugin::JapanesePrefectures
You can also look for information at:
http://annocpan.org/dist/Template-Plugin-JapanesePrefectures
http://cpanratings.perl.org/d/Template-Plugin-JapanesePrefectures
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Template-Plugin-JapanesePrefectures
http://search.cpan.org/dist/Template-Plugin-JapanesePrefectures
Copyright 2006 Atsushi Kobayashi, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Template-Plugin-JapanesePrefectures documentation | Contained in the Template-Plugin-JapanesePrefectures distribution. |
package Template::Plugin::JapanesePrefectures; use strict; use warnings; our $VERSION = 0.01; use Template::Plugin; use base qw(Template::Plugin); use Geography::JapanesePrefectures::Walker; sub new { my $class = shift; my $context = shift; return Geography::JapanesePrefectures::Walker->new(@_); }
1; # End of Template::Plugin::JapanesePrefectures