X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/f3264dbe1629fb53f70d1284190fe4781b61d6e5..297195ea7cb59ede5d39d7f3c56fdfd2ead376f7:/page.php diff --git a/page.php b/page.php index c2dfd9f..554735c 100644 --- a/page.php +++ b/page.php @@ -23,7 +23,7 @@ function getoutput($blocks = []) } return preg_replace_callback( - '< \[\[ ([^]/]+) ([^]]*) \]\] >x', + '< \[\[ ([^] ]+) ([^]]*) \]\] >x', function ($sub) use ($blocks) { list ($placeholder, $name, $params) = $sub; if (isset($blocks[$name])) { @@ -32,7 +32,15 @@ function getoutput($blocks = []) elseif (file_exists("$name.php")) { ob_start(); $Page = $GLOBALS['Page']; - $Args = $GLOBALS['Args'] . $params; + $Args = $GLOBALS['Args']; + foreach (explode(' ', $params) as $param) { + if ($set = strpos($param, '=')) { + $_GET[ substr($param, 0, $set) ] = substr($param, $set + 1); + } + elseif (!empty($param)) { + $Args .= '/'.$param; + } + } include "$name.php"; $html = ob_get_clean(); } @@ -137,15 +145,17 @@ print "\n\n"; # execute dynamic code -$Place = [ - 'user' => $User['name'], - 'url' => htmlspecialchars($_SERVER['REQUEST_URI']), -]; +$Place = []; if ($Page) { $found |= require "./$Page/index.php"; } +$Place += [ + 'user' => $User ? $User['name'] : '', + 'url' => htmlspecialchars($_SERVER['REQUEST_URI']), +]; + # global html if (!$found) {