diff --git a/index.php b/index.php index b512107..836d57d 100755 --- a/index.php +++ b/index.php @@ -45,19 +45,19 @@ $users = [ //array of links and display text to display at the top of the site $navlinks = [ - "Home" => "index.php", - "Login" => "index.php?action=login", - " | " => "", - "{search}" => "", - " | " => "", - "Read" => "index.php?page={page}", - "Edit" => "index.php?action=edit&page={page}", - "Printable" => "index.php?action=view&printable=yes&page={page}", - " | " => "", - "All Pages" => "index.php?action=list", - " | " => "", - "Credits" => "index.php?action=credits", - "Help" => "index.php?action=help" + [ "Home", "index.php" ], + [ "Login", "index.php?action=login" ], + " | ", + "search", + " | ", + [ "Read", "index.php?page={page}" ], + [ "Edit", "index.php?action=edit&page={page}" ], + [ "Printable", "index.php?action=view&printable=yes&page={page}" ], + " | ", + [ "All Pages", "index.php?action=list" ], + " | ", + [ "Credits", "index.php?action=credits" ], + [ "Help", "index.php?action=help" ] ]; //contact details for the site administrator. Since user can only be added by editing this file, people will need a contact address to use to ask for an account. Displayed at the bottom of the page, and will be appropriatly obfusticateed to deter spammers. @@ -260,25 +260,30 @@ function renderpage($title, $content, $minimal = false) else $html .= "\t\tBrowsing as Anonymous. Login. | \n"; - foreach($navlinks as $display => $url) + foreach($navlinks as $item) { - if($display == "{search}") + if(is_string($item)) { - //output a search bar - $html .= "
"; - } - else if(strlen($url) === 0) - { - //the url has not been set, output $display directly - $html .= " " . trim($display) . " "; + //the item is a string + switch($item) + { + //keywords + case "search": //displays a search bar + $html .= "
"; + break; + + //it isn't a keyword, so just output it directly + default: + $html .= $item; + } } else { //output the display as a link to the url - $html .= "\t\t$display\n"; + $html .= "\t\t$item[0]\n"; } } - + $html .= "

$sitename

$content