dirroot/lang/$lang/help/$file"; } else { $filepath = "$CFG->dirroot/lang/$lang/help/$module/$file"; } if (file_exists("$filepath")) { require_once("$filepath"); // Chosen language } else { // Fall back to English if ($module == "moodle") { $filepath = "$CFG->dirroot/lang/en/help/$file"; } else { $filepath = "$CFG->dirroot/lang/en/help/$module/$file"; } if (file_exists("$filepath")) { require_once("$filepath"); } else { notify("Can not find the specified help file"); die; } } } else { echo "

"; echo $text; echo "

"; } close_window_button(); ?>