version 1.571, 2025/02/03 19:07:54
|
version 1.573, 2025/04/02 23:44:01
|
Line 1710 END
|
Line 1710 END
|
|
|
# Data |
# Data |
if ($counter) { |
if ($counter) { |
$result.=&Apache::loncommon::start_data_table("LC_tableOfContent"); |
$result.=&Apache::loncommon::start_data_table("LC_tableOfContent"). |
|
&Apache::loncommon::start_data_table_header_row('LC_visually_hidden'). |
|
'<th>'.&mt('Resource or Folder').'</th>'. |
|
'<th>'.&mt('Alerts').'</th>'. |
|
'<th>'.&mt('Status Icon').'</th>'. |
|
'<th>'.&mt('Date/Completion Status').'</th>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
} |
} |
|
|
my $res = "Apache::lonnavmaps::resource"; |
my $res = "Apache::lonnavmaps::resource"; |
Line 3061 sub parmval_real {
|
Line 3067 sub parmval_real {
|
} |
} |
|
|
sub recurseup_maps { |
sub recurseup_maps { |
my ($self,$mapname,$getsymb) = @_; |
my ($self,$mapname,$getsymb,$inclusive) = @_; |
my @recurseup; |
my @recurseup; |
if ($mapname) { |
if ($mapname) { |
my $res = $self->getResourceByUrl($mapname); |
my $res = $self->getResourceByUrl($mapname); |
Line 3075 sub recurseup_maps {
|
Line 3081 sub recurseup_maps {
|
@recurseup = map { &Apache::lonnet::declutter($self->getByMapPc($_)->src()); } reverse(@pcs); |
@recurseup = map { &Apache::lonnet::declutter($self->getByMapPc($_)->src()); } reverse(@pcs); |
} |
} |
} |
} |
|
if ($inclusive) { |
|
if ($getsymb) { |
|
unshift(@recurseup,$res->symb()); |
|
} else { |
|
unshift(@recurseup,$mapname); |
|
} |
|
} |
} |
} |
} |
} |
return @recurseup; |
return @recurseup; |