PNG
IHDR ; IDATxܻn0K
)(pA7LeG{ §㻢|ذaÆ
6lذaÆ
6lذaÆ
6lom$^yذag5 bÆ
6lذaÆ
6lذa{
6lذaÆ
`}HFkm,mӪôô!x|'ܢ˟;E:9&ᶒ}{v]n&6
h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%tMז -lG6mrz2s%9s@-k9=)kB5\+͂ZsٲRn~GRCwIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL /F*\Ԕ#"5m2[S=gnaPeғL
lذaÆ
6l^ḵaÆ
6lذaÆ
6lذa;
_ذaÆ
6lذaÆ
6lذaÆ
R IENDB`
package Config::Any::XML;
use strict;
use warnings;
use base 'Config::Any::Base';
=head1 NAME
Config::Any::XML - Load XML config files
=head1 DESCRIPTION
Loads XML files. Example:
TestApp
bar
xyzzy
=head1 METHODS
=head2 extensions( )
return an array of valid extensions (C).
=cut
sub extensions {
return qw( xml );
}
=head2 load( $file )
Attempts to load C<$file> as an XML file.
=cut
sub load {
my $class = shift;
my $file = shift;
my $args = shift || {};
require XML::Simple;
my $config = XML::Simple::XMLin(
$file,
ForceArray => [ qw( component model view controller ) ],
%$args
);
return $class->_coerce( $config );
}
sub _coerce {
# coerce the XML-parsed config into the correct format
my $class = shift;
my $config = shift;
my $out;
for my $k ( keys %$config ) {
my $ref = $config->{ $k };
my $name = ref $ref eq 'HASH' ? delete $ref->{ name } : undef;
if ( defined $name ) {
$out->{ $k }->{ $name } = $ref;
}
else {
$out->{ $k } = $ref;
}
}
$out;
}
=head2 requires_all_of( )
Specifies that this module requires L and L
in order to work.
=cut
sub requires_all_of { 'XML::Simple', 'XML::NamespaceSupport' }
=head1 CAVEATS
=head2 Strict Mode
If, by some chance, L has already been loaded with the strict
flag turned on, then you will likely get errors as warnings will become
fatal exceptions and certain arguments to XMLin() will no longer be optional.
See L for
more information.
=head1 AUTHORS
Brian Cassidy Ebricas@cpan.orgE
Joel Bernstein Erataxis@cpan.orgE
=head1 COPYRIGHT AND LICENSE
Copyright 2006-2013 by Brian Cassidy
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 SEE ALSO
=over 4
=item * L
=item * L
=item * L
=back
=cut
1;