. /** * Minimalistic library, usable even when no other moodle libs are loaded. * * The only library that gets loaded if you define ABORT_AFTER_CONFIG * before including main config.php. You can resume normal script operation * if you define ABORT_AFTER_CONFIG_CANCEL and require the setup.php * * @package moodlecore * @copyright 2009 petr Skoda (skodak) * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Minimalistic parameter validation function. * Can not use optional param because moodlelib.php is not loaded yet * @param string $name * @param mixed $default * @param string $type * @return mixed */ function min_optional_param($name, $default, $type) { $value = $default; if (isset($_GET[$name])) { $value = $_GET[$name]; } else if (isset($_GET['amp;'.$name])) { // very, very, very ugly hack, unforunately $OUTPUT->pix_url() is not used properly in javascript code :-( $value = $_GET['amp;'.$name]; } return min_clean_param($value, $type); } /** * Minimalistic parameter cleaning function. * Can not use optional param because moodlelib.php is not loaded yet * @param string $name * @param mixed $default * @param string $type * @return mixed */ function min_clean_param($value, $type) { switch($type) { case 'RAW': break; case 'INT': $value = (int)$value; break; case 'SAFEDIR': $value = preg_replace('/[^a-zA-Z0-9_-]/', '', $value); break; case 'SAFEPATH': $value = preg_replace('/[^a-zA-Z0-9\/\._-]/', '', $value); $value = preg_replace('/\.+/', '.', $value); $value = preg_replace('#/+#', '/', $value); break; default: die("Coding error: incorrent parameter type specified ($type)."); } return $value; }