// if $category ne 'advtools';
+ }
push @{$tools{$category}}, @html;
}
@@ -1559,10 +1594,10 @@ returns: nothing
=item render_tools(\$breadcrumbs)
-Creates html for breadcrumb tools (categories navigation and tools) and inserts
+Creates html for breadcrumb tools (categories navigation and tools) and inserts
\$breadcrumbs at the correct position.
-input: \$breadcrumbs - a reference to the string containing prepared
+input: \$breadcrumbs - a reference to the string containing prepared
breadcrumbs.
returns: nothing
@@ -1573,35 +1608,32 @@ returns: nothing
my ($breadcrumbs) = @_;
return unless defined %tools;
- my $navigation = list_from_array($tools{navigation},
+ my $navigation = list_from_array($tools{navigation},
{ listattr => { class=>"LC_breadcrumb_tools_navigation" } });
- my $tools = list_from_array($tools{tools},
+ my $tools = list_from_array($tools{tools},
{ listattr => { class=>"LC_breadcrumb_tools_tools" } });
- $$breadcrumbs = list_from_array([$navigation, $tools, $$breadcrumbs],
+ $$breadcrumbs = list_from_array([$navigation, $tools, $$breadcrumbs],
{ listattr => { class=>'LC_breadcrumb_tools_outerlist' } });
}
-=item render_advtools(\$breadcrumbs,$legend)
+=item render_advtools(\$breadcrumbs)
-Creates html for advanced tools (category advtools) and inserts \$breadcrumbs
+Creates html for advanced tools (category advtools) and inserts \$breadcrumbs
at the correct position.
-input: \$breadcrumbs - a reference to the string containing prepared
+input: \$breadcrumbs - a reference to the string containing prepared
breadcrumbs (after render_tools call).
returns: nothing
=cut
sub render_advtools {
- my ($breadcrumbs,$legend) = @_;
- return unless (defined $tools{'advtools'})
+ my ($breadcrumbs) = @_;
+ return unless (defined $tools{'advtools'})
and (scalar(@{$tools{'advtools'}}) > 0);
- my $args;
- if ($legend) {
- $args = {legend => $legend};
- }
+
$$breadcrumbs .= Apache::loncommon::head_subbox(
- funclist_from_array($tools{'advtools'},$args));
+ funclist_from_array($tools{'advtools'}) );
}
} # End of scope for @Crumbs
@@ -1957,6 +1989,29 @@ sub course_custom_roles {
}
+sub resource_info_box {
+ my ($symb,$onlyfolderflag)=@_;
+ my $return='';
+ if ($symb) {
+ $return=&Apache::loncommon::start_data_table();
+ my ($map,$id,$resource)=&Apache::lonnet::decode_symb($symb);
+ my $folder=&Apache::lonnet::gettitle($map);
+ $return.=&Apache::loncommon::start_data_table_row().
+ ''.&mt('Folder:').' | '.$folder.' | '.
+ &Apache::loncommon::end_data_table_row();
+ unless ($onlyfolderflag) {
+ $return.=&Apache::loncommon::start_data_table_row().
+ ''.&mt('Resource:').' | '.&Apache::lonnet::gettitle($symb).' | '.
+ &Apache::loncommon::end_data_table_row();
+ }
+ $return.=&Apache::loncommon::end_data_table();
+ } else {
+ $return=''.&mt('No context provided.').'
';
+ }
+ return $return;
+
+}
+
##############################################
##############################################
@@ -2315,24 +2370,24 @@ sub scripttag {
Constructs a XHTML list from \@array.
-input:
+input:
=over
-=item \@array
+=item \@array
A reference to the array containing text that will be wrapped in tags.
-=item { listattr => {}, itemattr =>{} }
+=item { listattr => {}, itemattr =>{} }
-Attributes for and - passed in as hash references.
+Attributes for
and - passed in as hash references.
See htmltag() for more details.
=back
+
+returns: XHTML list as String.
-returns: XHTML list as String.
-
-=cut
+=cut
# \@items, {listattr => { class => 'abc', id => 'xyx' }, itemattr => {class => 'abc', id => 'xyx'}}
sub list_from_array {
@@ -2388,15 +2443,11 @@ sub generate_menu {
# create the markup for the current $link and push it into @links.
# each entry consists of an image and a text optionally followed
# by a help link.
- my $src;
- if ($$link{icon} ne '') {
- $src = '/res/adm/pages/'.$$link{icon};
- }
push(@links,$li->(
$a->(
$img->("", {
class => "LC_noBorder LC_middle",
- src => $src,
+ src => "/res/adm/pages/$$link{icon}",
alt => mt(defined($$link{alttext}) ?
$$link{alttext} : $$link{linktext})
}), {
@@ -2526,7 +2577,7 @@ sub end_funclist {
Constructs a XHTML list from \@array with the first item being visually
highlighted and set to the value of legend or 'Functions' if legend is
-empty.
+empty.
=over
@@ -2540,19 +2591,19 @@ A string that's used as visually highlig
it's value evaluates to false.
=back
-
-returns: XHTML list as string.
+
+returns: XHTML list as string.
=back
-=cut
+=cut
sub funclist_from_array {
my ($items, $args) = @_;
$args->{legend} ||= mt('Functions');
- return list_from_array( [$args->{legend}, @$items],
+ return list_from_array( [$args->{legend}, @$items],
{ listattr => {class => 'LC_funclist'} });
-}
+}
1;