--- loncom/interface/lonnavmaps.pm 2005/03/01 00:41:01 1.317
+++ loncom/interface/lonnavmaps.pm 2005/03/23 22:16:57 1.319
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Navigate Maps Handler
#
-# $Id: lonnavmaps.pm,v 1.317 2005/03/01 00:41:01 albertel Exp $
+# $Id: lonnavmaps.pm,v 1.319 2005/03/23 22:16:57 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1060,7 +1060,7 @@ sub render_resource {
$icon = $params->{'indentString'};
}
} else {
- $icon = "
";
+ $icon = "
";
}
# Display the correct map icon to open or shut map
@@ -2566,11 +2566,11 @@ want to know is if I resources matc
parameter will allow you to avoid potentially expensive enumeration of
all matching resources.
-=item * B(map, filterFunc, recursive):
+=item * B(map, filterFunc, recursive, showall):
Convience method for
- scalar(retrieveResources($map, $filterFunc, $recursive, 1)) > 0
+ scalar(retrieveResources($map, $filterFunc, $recursive, 1, $showall)) > 0
which will tell whether the map has resources matching the description
in the filter function.
@@ -2653,8 +2653,9 @@ sub hasResource {
my $map = shift;
my $filterFunc = shift;
my $recursive = shift;
+ my $showall = shift;
- return scalar($self->retrieveResources($map, $filterFunc, $recursive, 1)) > 0;
+ return scalar($self->retrieveResources($map, $filterFunc, $recursive, 1, $showall)) > 0;
}
1;