- $title:
+ $title
|
ENDONE
@@ -1642,6 +1736,25 @@ 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 '
+
+ !['.&mt('Step [_1]',$imgnum).
+ '](/res/adm/pages/bl_step'.$imgnum.'.gif)
+ '.$title.'
+
+';
+}
+
+##############################################
+##############################################
# echo_form_input
#
@@ -1889,6 +2002,8 @@ END
return $scripttag;
}
+
+
1;
__END__
|