version 1.178, 2008/08/21 10:48:37
|
version 1.181, 2008/09/25 17:44:11
|
Line 1310 returns: nothing
|
Line 1310 returns: nothing
|
my $faq = ''; |
my $faq = ''; |
my $bug = ''; |
my $bug = ''; |
my $help=''; |
my $help=''; |
|
# Crumb Symbol |
|
my $crumbsymbol = ' ▶ '; |
# The last breadcrumb does not have a link, so handle it separately. |
# The last breadcrumb does not have a link, so handle it separately. |
my $last = pop(@Crumbs); |
my $last = pop(@Crumbs); |
# |
# |
Line 1333 returns: nothing
|
Line 1335 returns: nothing
|
}); |
}); |
} |
} |
my $links .= |
my $links .= |
join('->', |
join($crumbsymbol, |
map { |
map { |
$faq = $_->{'faq'} if (exists($_->{'faq'})); |
$faq = $_->{'faq'} if (exists($_->{'faq'})); |
$bug = $_->{'bug'} if (exists($_->{'bug'})); |
$bug = $_->{'bug'} if (exists($_->{'bug'})); |
Line 1352 returns: nothing
|
Line 1354 returns: nothing
|
$result; |
$result; |
} @Crumbs |
} @Crumbs |
); |
); |
$links .= '->' if ($links ne ''); |
$links .= $crumbsymbol if ($links ne ''); |
if ($last->{'no_mt'}) { |
if ($last->{'no_mt'}) { |
$links .= '<b>'.$last->{'text'}.'</b>'; |
$links .= '<b>'.$last->{'text'}.'</b>'; |
} else { |
} else { |
Line 1481 END
|
Line 1483 END
|
return $output; |
return $output; |
} |
} |
|
|
|
sub row_headline { |
|
my $output = <<"END"; |
|
<tr><td colspan="2"> |
|
END |
|
return $output; |
|
} |
|
|
sub row_title { |
sub row_title { |
my ($title,$css_title_class,$css_value_class) = @_; |
my ($title,$css_title_class,$css_value_class) = @_; |
$css_title_class ||= 'LC_pick_box_title'; |
$css_title_class ||= 'LC_pick_box_title'; |
Line 1727 sub course_custom_roles {
|
Line 1736 sub course_custom_roles {
|
|
|
############################################## |
############################################## |
############################################## |
############################################## |
|
|
|
# topic_bar |
|
# |
|
# Generates a div containing a numbered (static image) followed by a title |
|
# with a background color defined in the corresponding CSS: LC_topic_bar |
|
# |
|
sub topic_bar { |
|
my ($imgnum,$title) = @_; |
|
return ' |
|
<div class="LC_topic_bar"> |
|
<img alt="'.&mt('Step [_1]',$imgnum). |
|
'"src="/res/adm/pages/bl_step'.$imgnum.'.gif" /> |
|
<span>'.$title.'</span> |
|
</div> |
|
'; |
|
} |
|
|
|
############################################## |
|
############################################## |
|
|
# echo_form_input |
# echo_form_input |
# |
# |