/// Get and sort the existing blocks
if (false === ($blocks = get_records('block'))) {
- print_error('No blocks found!'); // Should never happen
+ print_error('noblocks', 'error'); // Should never happen
}
$incompatible = array();
}
if(empty($blockbyname)) {
- print_error('One or more blocks are registered in the database, but they all failed to load!');
+ print_error('failtoloadblocks', 'error');
}
ksort($blockbyname);
mark_context_dirty('/'.SYSCONTEXTID);
// do nothing
} else {
- print_error("Serious Error! Could not set up a default course category!");
+ print_error('cannotsetupcategory', 'error');
}
} else {
- print_error("Serious Error! Could not set up the site!");
+ print_error('cannotsetupsite', 'error');
}
}