ImageAlias — specify alias location for all image files
The directive specifies an alias for the base images location, which is
set by ImageDir and related directives.
It is similar in effect to the "alias" feature of Web servers such as Apache or NCSA.
Interchange 5.7.0:
Source: lib/Vend/Config.pm
Line 3132 (context shows lines 3132-3149)
sub parse_hash {
my($item,$settings) = @_;
if (! $settings) {
return $HashDefaultBlank{$item} ? '' : {};
}
my $c;
if(defined $C) {
$c = $C->{$item} || {};
}
else {
no strict 'refs';
$c = ${"Global::$item"} || {};
}
return hash_string($settings,$c);
}