MDL-19787 Migrated calls to print_heading

This commit is contained in:
nicolasconnault
2009-08-06 08:17:12 +00:00
parent c018f97328
commit 2fff8846f2
51 changed files with 110 additions and 109 deletions
+4 -3
View File
@@ -1198,10 +1198,11 @@ class generator_web extends generator {
}
public function display() {
global $OUTPUT;
print_header("Data generator");
print_heading("Data generator: web interface");
print_heading("FOR DEVELOPMENT PURPOSES ONLY. DO NOT USE ON A PRODUCTION SITE!", '', 3);
print_heading("Your database contents will probably be massacred. You have been warned", '', 5);
echo $OUTPUT->heading("Data generator: web interface");
echo $OUTPUT->heading("FOR DEVELOPMENT PURPOSES ONLY. DO NOT USE ON A PRODUCTION SITE!", 3);
echo $OUTPUT->heading("Your database contents will probably be massacred. You have been warned", 5);
$systemcontext = get_context_instance(CONTEXT_SYSTEM);