X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FUtils.pm;h=60f270864589f72494179732dfa2440f106940bd;hp=6c2ecb54ce4476cff3974745f0a516c389d28f6a;hb=cb69249ef4c0f2c88ec4361b46be37d473402153;hpb=cbb931057eb985308705c7b29aca87600b99ecd4 diff --git a/lib/Catalyst/Utils.pm b/lib/Catalyst/Utils.pm index 6c2ecb5..60f2708 100644 --- a/lib/Catalyst/Utils.pm +++ b/lib/Catalyst/Utils.pm @@ -292,6 +292,28 @@ sub merge_hashes { return \%merged; } +=head2 env_value($class, $key) + +Checks for and returns an environment value. For instance, if $key is +'home', then this method will check for and return the first value it finds, +looking at $ENV{MYAPP_HOME} and $ENV{CATALYST_HOME}. + +=cut + +sub env_value { + my ( $class, $key ) = @_; + + $key = uc($key); + my @prefixes = ( class2env($class), 'CATALYST' ); + + for my $prefix (@prefixes) { + if ( defined( my $value = $ENV{"${prefix}_${key}"} ) ) { + return $value; + } + } + + return; +} =head1 AUTHOR